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 7a1d8cc commit 2bce900Copy full SHA for 2bce900
exercises/007-hours_and_minutes/app.py
@@ -1,7 +1,6 @@
1
-#Complete the function to calculate how many hours and minutes are passed since midnight.
2
def hours_minutes(secs):
3
-
+ # Your code here
4
return None
5
6
-#Invoke the funtion and pass any interger as its argument.
7
-print(hours_minutes(3900))
+# Invoke the function and pass any integer as its argument
+print(hours_minutes(3900))
0 commit comments