Explain Calendar Module in Python



Python has an inbuilt module and imports all the classes and functions in the module.

Example

#Write a python program to print month of a calendar?
import calendar
#prints may month calendar
print(calendar.month(2019,5))

Output

May 2019
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
Updated on: 2019-07-30T22:30:26+05:30

341 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements