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.

  1. import calendar  

  2.  And then apply the syntax  

  3. (calendar.month(yy,mm))  

See this example:

back.png

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