- 1

Someone pls help nee

#input 00/10 - 00 seconds, 10 the hour, #you can input any second and hour you would like like this: 59/12, 01/13 and so on... time = input() time = time.split("/") i = 0 while time[0] <= 60: print(time[0] + time[1]) time[0] = time[0] + i i = i + 1 else: while time[0] >= 60: print(time[0] + time[1]) time[0] = 0 time[1] = time[1] + 1

9th Oct 2021, 5:53 AM
Alon
1 Antwort