Write a python program to find the first day of given year Danger note : Spammers stay away Question for only Python coders
Answers
Answered by
0
# This is my own code
import datetime
def Startingday(year):
# Creating an object for 1st January of that particular year
# For that we are passing three argument (1) year (2) month
# i.e 1 for january (3) date i.e 1 for starting day of
# that particular year
a = datetime.datetime(year, 1, 1)
# for printing Startingday of a particular year
# we are using a.strftime("% A")
print("Starting day of year ", year, " is ", a.strftime("%A"))
# Driver Code
year = int(input("Enter a year : "))
Startingday(year)
#Code by Pratheek
Similar questions