Python程序显示不同的日期格式
datetime模块提供了操作日期和时间的类。我们将显示不同的格式,例如星期几、周数、年份的第几天等。
算法
Step 1: Import datetime.
Step 2: Print day of the week.
Step 3: Print week number.
Step 4: Print day of the year.
代码示例
import datetime
print("Day of the week: ", datetime.date.today().strftime("%A"))
print("Week number: ", datetime.date.today().strftime("%W"))
print("Day of the year: ", datetime.date.today().strftime("%j"))
输出
Day of the week: Sunday
Week number: 06
Day of the year: 045
解释
strftime()函数的参数解释如下:
- %A:完整的星期名称(例如:“星期一”)
- %W:以星期日为一周的第一天的年份周数
- %j:年份的第几天,用零填充的十进制数