Skip to content

Commit 2bce900

Browse files
authored
Update app.py
1 parent 7a1d8cc commit 2bce900

File tree

1 file changed

+3
-4
lines changed
  • exercises/007-hours_and_minutes

1 file changed

+3
-4
lines changed
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
#Complete the function to calculate how many hours and minutes are passed since midnight.
21
def hours_minutes(secs):
3-
2+
# Your code here
43
return None
54

6-
#Invoke the funtion and pass any interger as its argument.
7-
print(hours_minutes(3900))
5+
# Invoke the function and pass any integer as its argument
6+
print(hours_minutes(3900))

0 commit comments

Comments
 (0)