Python Calendar – Display calendar in Python

In this post we will be creating a short script that will display the yearly calendar in Python, to do this we will be making use of the calendar module. By default the module will take Monday as the first day of the week and Sunday as the last although this can be changed.

See the snippet of code below that will print the current years calendar.

import calendar

yyyy=2022
print(calendar.calendar(yyyy))

In the code example above the following would be given as output.

One thought on “Python Calendar – Display calendar in Python

Leave a Reply