calendar python code example
Example 1: 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")
Example 2: python calendar
import calendar
yio = int(input('Input a month'))
s = int(input('Input a year'))
print(calendar.month(s,yio))