We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9c494f commit ef5ff0bCopy full SHA for ef5ff0b
Import/Calender.py
@@ -0,0 +1,5 @@
1
+import calendar
2
+
3
+y = int(input("Enter the year: "))
4
+m = int(input("Enter the month: "))
5
+print(calendar.month(y,m))
Import/Date and time.py
@@ -0,0 +1,4 @@
+import datetime
+now = datetime.datetime.now()
+print(now.strftime("%Y-%m-%d %H:%M:%S"))
0 commit comments