Skip to content

Commit 99b6f56

Browse files
authored
Add files via upload
Prints calendar
1 parent 2b8b6cc commit 99b6f56

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

calendar_1.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import calendar
2+
y = input('Enter year: ')
3+
m = input('Enter month: ')
4+
y_1 = int(y)
5+
m_1 = int(m)
6+
print(calendar.month(y_1, m_1))

0 commit comments

Comments
 (0)