We can display the calendar using python very easily by only importing the calendar module.
import calendar year = 2016 # Change the year here month = 11 # Change the month here print(calendar.month(year,month))
November 2016 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
Comments :