Skip to content

Commit 60264c6

Browse files
authored
Create Print Calendar.py
1 parent 7167ab6 commit 60264c6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Print Calendar.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import calendar
2+
year =int( input("Enter the year of the required calendar "))
3+
month = int( input("Enter the month of the required calendar "))
4+
print(calendar.month(year,month))

0 commit comments

Comments
 (0)