Physics, asked by fgcoder, 6 months ago

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 Anonymous
1

# This code is given by RockstarPratheek (@Brainly.in)

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

Answered by tuktuki8
0

Answer:

Python program to find the first day of given year

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

Explanation:

please mark as brain list

Similar questions