We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b8b6cc commit 99b6f56Copy full SHA for 99b6f56
calendar_1.py
@@ -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