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
1
Python programming:-Your parents spend a lot on you They are deading their deeds that you will become a good person. But you dont know one answer. You are looting your parents.
Thank you and your parents!
Answered by
0
Explanation:
Given a year as input, write a Python to find the starting day of the given year. We will use Python datetime library in order to solve this problem.
Example:
Input : 2010
Output :Friday
Input :2019
Output :Tuesday
Below is the implementation:
# Python program to find the first day of given year
# import datetime library
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 = 2010
Startingday(year)
Output:
Starting day of year 2010 is Friday
Similar questions