Write a program in Python to display the monthly calendar
1 2 3 4 5 6 7 |
import calendar # Please Enter the desired month and year yy = int(input("Please Enter desired year: ")) mm = int(input("Please Enter desired month: ")) # Showing the calendar print(calendar.month(yy,mm)) |