Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python을 사용하여 주어진 연도의 첫 번째 날짜를 찾는 방법은 무엇입니까?

<시간/>

이 프로그램에서는 연도의 첫날을 인쇄해야 합니다. 사용자 입력으로 1년이 걸립니다.

알고리즘

Step 1: Import the datetime library.
Step 2: Take year as input from the user.
Step 3: Get the first day of 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("Enter year: "))
firstday = datetime.datetime(year, 1,1)
print("First Day of ", year, " = ", firstday.strftime("%A"))

출력

First Day of  2021  =  Friday