Computer >> Computer tutorials >  >> Programming >> Python

How to print a calendar for the given month and year in Python?


You can use the calender module to get the calender for a given month of a given year in Python. You need to provide the year and month as arguments.

Example

import calendar
y = 2017
m = 11
print(calendar.month(y, m))

Output

This will give the output −

   November 2017
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