Skip to content

Commit 2df8b06

Browse files
author
codehouseindia
authored
Merge pull request codehouseindia#12 from Graey/patch-5
Program to display calendar of the given month and year
2 parents 1ad1694 + 5daebf0 commit 2df8b06

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

displaycalender.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# https://www.facebook.com/graeyaki/posts/3604553256276181
2+
# Subscribed by Pranav Kumar Mishra
3+
4+
import calendar
5+
6+
yy = int(input("Enter year: "))
7+
mm = int(input("Enter month: "))
8+
9+
10+
print(calendar.month(yy, mm))

0 commit comments

Comments
 (0)