MakeItSimple
Toggle
Home
C language
FAQs
Programs
Python
FAQs
Programs
HTML
Programs
FAQs
CSS
Javascript
FAQs
Programs
PHP
FAQs
Programs
JQuery
FAQs
Programs
AJAX
Bootstrap 3
Website
Python Examples
22. Program to print year and month calendars.
import calendar print(calendar.calendar(2023)) print(calendar.month(2023,10))
Output :
It displays 2023 year calendar and October,2023 month calendar.