溫馨提示×

python中datetime.date的用法是什么

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

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

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

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

import datetime

# 獲取當(dāng)前日期
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周數(shù)和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日以來的天數(shù)
ordinal = date.toordinal()
print(ordinal)

輸出結(jié)果:

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