Step1:Import datetime.Step2:Print day of the week.Step3:Print week number.Step4:Print day of the year.
Python
代码示例
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"))
Python
输出
Day of the week:SundayWeek number:06Day of the year:045