Comment imprimer le calendrier de l'année entière à Python

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