
Hayward B. answered 07/31/20
python developer, software enginneer
# Python code to demonstrate the working of
# calendar() function to print calendar
# importing calendar module
# for calendar operations
import calendar
# using calender to print calendar of year
# prints calendar of 2020
print ("The calender of year 2020 is : ")
print (calendar.calendar(2020, 2, 1, 6))