Program to print a month in a year in Python

 import calendar

#yr=2005

#mm=5

yr=int(input("Enter year you want: "))

mm=int(input("Enter month you want: "))

print(calendar.month(yr,mm))

Comments

Popular posts from this blog

Data Science Matplotlib Library Data Visualization, ASSIGNMENT - 6, GO_STP_8113