python program to display calendar code example
Example: calendar program in python
import calendar
print("Your Calender\n \n ")
y = int(input("Enter the Year : "))
m = int(input("Enter the month : "))
try:
mycalender = calendar.month(y , m)
print("\n", mycalender)
except IndexError:
print("Its out of range")