Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะค้นหาวันแรกของปีที่กำหนดโดยใช้ Python ได้อย่างไร


ในโปรแกรมนี้เราต้องพิมพ์วันแรกของปี เราต้องใช้เวลาหนึ่งปีในการป้อนข้อมูลของผู้ใช้

อัลกอริทึม

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