Write a Python program to print the calendar of any given year
Topic: Write a Python program to print the calendar of any given year
Solution
import calendar year=2020 print(calendar.calendar(year))
List all Python Programs
Solution
import calendar year=2020 print(calendar.calendar(year))