Computer Science, asked by MrPrashasst, 1 year ago

write a python program to print callender of year 2020 dont spam​

Answers

Answered by pawan1295
0

Answer:

import calendar

print ("The calendar of 2020 is: ")

print (calendar.calendar(2020,3,1,4))

Explanation:

Python has built-in calendar module. We used that to print the whole year calendar. For more information, refer official documentation.

Happy learning!

Similar questions