Untitled

Anonymous
plain_text
05/22/2024 6:11 AM
288 B
13
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