Python programming codes
43 subscribers
25 photos
1 video
83 files
82 links
Uploading All programming codes are updating Daily
ask doubts in comment box 🎁☑️
Download Telegram
#Display the calendar by using the python code

import calendar #first import the calendar library module
from datetime import*
#year = 2023 #mention the past or present or future years

year = date.today().year
month = 1 #mention the 1 to 12 month numbers ∆∆ starting with no zero (0) mention ortherwise the program error display

#then after the print operation to display the output
print(calendar.month(year,month))

print("today date is",date.today().day)