Python Program to Display Calendar

preview_player
Показать описание
#BackCoding

Python has a built-in function, calendar to work with date related tasks. You will learn to display the calendar of a given date

import the calendar module. The built-in function month() inside the module takes in the year and the month and displays the calendar for that month of the year.

#python
#programming
#shorts
#shorts
Рекомендации по теме
Комментарии
Автор

import calendar

yy=2022
mm=10

calenData=calendar.month(yy, mm)
print(calenData)

BackCoding
Автор

Can u explain that why you take (2, 1, 6)

Rocky-whvd