62.5k views
3 votes
Project stem
Assignment 7: calender

User TRose
by
4.9k points

1 Answer

4 votes

Answer:

import calendar

year = int(input("Enter a year: "))

month = int(input("Enter a month: "))

print(calendar.month(year, month))

Step-by-step explanation:

since you didnt mention what program to use, im going to answer using python.

User Dcbaker
by
4.7k points