Untitled

 avatar
unknown
plain_text
a year ago
216 B
5
Indexable
import calendar

def print_calendar(year):
    print(calendar.calendar(year))

# Get the year from the user
year = int(input('Enter the year: '))

# Print the calendar for the given year
print_calendar(year)
Editor is loading...
Leave a Comment