如何使用Python查找给定年份的第一个日期?

在此程序中,我们必须打印一年的第一天。我们必须以一年作为用户输入。

算法

Step 1: Import the datetime library.
Step 2: Take year as input from the user.
Step 3: Get the 的第一天 the year by passing month, day and year as parameters to the datetime.datetime() function
Step 4: Display the first day using strftime() function.

范例程式码

import datetime
year = int(input("输入年份: "))
firstday = datetime.datetime(year, 1,1)
print("的第一天 ", year, " = ", firstday.strftime("%A"))
输出结果
的第一天  2021  =  Friday