top of page
9) Python program to display calendar
It is simple in python programming to display calendar. To do so, you need to import the calendar module which comes with Python.
-
import calendar
-
And then apply the syntax
-
(calendar.month(yy,mm))
See this example:
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))
bottom of page