Skip to content

Commit e4e89c3

Browse files
authored
Update app.py
1 parent 62707b5 commit e4e89c3

File tree

1 file changed

+3
-4
lines changed
  • exercises/008-two_timestamps

1 file changed

+3
-4
lines changed

exercises/008-two_timestamps/app.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
#Complete the funtion to compute how many seconds passed between the two timestamp.
21
def two_timestamp(hr1,min1,sec1,hr2,min2,sec2):
3-
2+
# Your code here
43
return None
54

65

7-
#Invoke the fuction and pass two timestamps(6 intergers) as its argument.
8-
print(two_timestamp(1,1,1,2,2,2))
6+
# Invoke the function and pass two timestamps(6 intergers) as its arguments
7+
print(two_timestamp(1,1,1,2,2,2))

0 commit comments

Comments
 (0)