Как напечатать целый год календарь на Python

# importing the calendar module
import calendar
# initializing the year
year = 2020
# printing the calendar
print(calendar.calendar(year))
Rooted0x01