TechieClues TechieClues
Updated date Mar 21, 2021
In this code snippet, we will see how to display a calendar in python. We will have to use the "Calendar" module to display the calendar details in python.
  • 1.2k
  • 0
  • 0

Python program to show the Calendar in Python. Below is the code snippet,

In order to display a calendar, you have to import the "Calendar" module and use the calendar.month() function to display the calendar as shown below,

# Display calendar for given month and year

# Import calendar module
import calendar

# Input year and month
yyyy = int(input("Enter a year: "))
mm = int(input("Enter a month: "))

# display the calendar for given month and year
print(calendar.month(yyyy, mm))

Output:

Enter a year: 2021
Enter a month: 01

    January 2021
Mo Tu We Th Fr Sa Su
             1  2  3
 4  5  6  7  8  9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31

ABOUT THE AUTHOR

TechieClues
TechieClues

I specialize in creating and sharing insightful content encompassing various programming languages and technologies. My expertise extends to Python, PHP, Java, ... For more detailed information, please check out the user profile

https://www.techieclues.com/profile/techieclues

Comments (0)

There are no comments. Be the first to comment!!!