在Python中,可以使用datetime
模塊來打印當前日期。
import datetime
# 獲取當前日期
current_date = datetime.date.today()
# 打印當前日期
print(current_date)
運行上述代碼,將打印出當前的日期,格式為YYYY-MM-DD。
如果只想打印出日期的一部分,比如年、月、日,可以使用year
、month
和day
屬性。
import datetime
# 獲取當前日期
current_date = datetime.date.today()
# 打印年份
print(current_date.year)
# 打印月份
print(current_date.month)
# 打印日期
print(current_date.day)
運行上述代碼,將分別打印出當前日期的年份、月份和日期部分。