- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Explain calendar module in python?
Python has an inbuilt module and imports all the classes and functions in the module.
Example
#Write a python program to print month of a calendar? import calendar #prints may month calendar print(calendar.month(2019,5))
Output
May 2019 Mo Tu We Th Fr Sa Su 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
- Related Articles
- The calendar Module in Python
- What is calendar module in python?
- Explain subn() methods of “re” module in Python ?
- Calendar Functions in Python - ( calendar(), month(), isleap()?)
- Calendar in python
- Calendar function in Python
- Calendar in Python Program
- Calendar Functions in Python | Set 1( calendar(), month(), isleap()…)
- Print a Calendar in Python
- Fraction module in Python
- colorsys module in Python
- Import module in Python
- Keyboard module in Python
- struct module in Python
- Pygorithm module in Python

Advertisements