belongs to collection: Python Basic Programs
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))
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))
Output:
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Output:
need an explanation for this answer? contact us directly to get an explanation for this answer