import calendar
# Enter the month and year
#yy = int(input(“Enter year: “))
#mm = int(input(“Enter month: “))
# display the calendar
#print(calendar.month(yy,mm))
# Enter the month and year
yy = int(input(“Enter year: “))
# display the calendar
for i in range(1,13):
print(calendar.month(yy,i))
Leave a Reply