亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

python中datetime.date的用法是什么

小億
90
2024-02-04 10:18:57
欄目: 編程語言

datetime.date是python中的一個類,用于表示日期。它的常用方法和屬性有:

  1. today():返回當前日期。
  2. fromisoformat(date_string):從字符串中解析日期。
  3. year:返回年份。
  4. month:返回月份。
  5. day:返回日期。
  6. isoformat():返回日期的ISO格式字符串(YYYY-MM-DD)。
  7. strftime(format):將日期格式化為指定的字符串格式。
  8. replace(year, month, day):返回一個新的日期對象,替換指定的年、月、日。
  9. weekday():返回星期幾(0表示星期一,6表示星期日)。
  10. isoweekday():返回星期幾(1表示星期一,7表示星期日)。
  11. isocalendar():返回一個包含ISO年份、ISO周數和ISO工作日的元組。
  12. timetuple():返回日期的time.struct_time對象。
  13. toordinal():返回自公元1年1月1日以來的天數。

下面是一些示例使用datetime.date的代碼:

import datetime

# 獲取當前日期
today = datetime.date.today()
print(today)

# 解析日期字符串
date_str = '2022-10-31'
date = datetime.date.fromisoformat(date_str)
print(date)

# 獲取年、月、日
year = date.year
month = date.month
day = date.day
print(year, month, day)

# 將日期格式化為字符串
formatted_date = date.strftime('%Y/%m/%d')
print(formatted_date)

# 替換年份
new_date = date.replace(year=2023)
print(new_date)

# 獲取星期幾
weekday = date.weekday()
print(weekday)

# 獲取ISO年份、ISO周數和ISO工作日
iso_year, iso_week, iso_weekday = date.isocalendar()
print(iso_year, iso_week, iso_weekday)

# 獲取日期的time.struct_time對象
time_tuple = date.timetuple()
print(time_tuple)

# 獲取自公元1年1月1日以來的天數
ordinal = date.toordinal()
print(ordinal)

輸出結果:

2022-11-09
2022-10-31
2022 10 31
2022/10/31
2023-10-31
0
2022 44 1
time.struct_time(tm_year=2022, tm_mon=10, tm_mday=31, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=0, tm_yday=304, tm_isdst=-1)
738053

0
色达县| 连城县| 沂南县| 神池县| 伊通| 韶关市| 墨玉县| 财经| 郯城县| 罗定市| 青田县| 新昌县| 休宁县| 东乌珠穆沁旗| 当阳市| 新郑市| 滕州市| 永兴县| 梨树县| 定结县| 宁化县| 读书| 金阳县| 永春县| 双桥区| 包头市| 双流县| 榆社县| 南溪县| 通辽市| 南通市| 新蔡县| 泸水县| 长岭县| 平阴县| 长沙县| 彝良县| 巴南区| 钟山县| 凤庆县| 麻城市|