cara mencetak kalender sepanjang tahun di python

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