C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Python program to display calendarIt 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)) Output:
Next TopicPython Native Data Type Programs
|