Skip to content

Commit 2a980bc

Browse files
authored
Create Displaycalender.py
1 parent efe06c0 commit 2a980bc

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Displaycalender.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# importing calendar module
2+
import calendar
3+
4+
yy = 2014 # year
5+
mm = 11 # month
6+
7+
# To take month and year input from the user
8+
# yy = int(input("Enter year: "))
9+
# mm = int(input("Enter month: "))
10+
11+
# display the calendar
12+
print(calendar.month(yy, mm))

0 commit comments

Comments
 (0)