Get Calendar using Python || Use import calendar module || Python...

Опубликовано: 27 Март 2026
на канале: dev. ZRN
530
15

Python is a programming language.
It has modules.
Modules are piece of code written by other programmers.
Modules are of two types:
1) Built in modules
2) External modules
Here, we have imported calendar module which is built in module.

code:
import calendar
year=2022
month=8
x=calendar.month(year,month)
print(x)


#programming#coding#IT#importcalendar#august