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:一年中的第几天,以零填充的十进制数字表示
广告