diff --git a/stopwatch.py b/stopwatch.py index abd0fa5..d9fa274 100644 --- a/stopwatch.py +++ b/stopwatch.py @@ -10,10 +10,10 @@ try : while True : input() - lapTine=round(time.time() - lastTime, 2) + lapTime=round(time.time() - lastTime, 2) totalTime=round(time.time() - startTime ,2) print('Lap #%s: %s' %(lapNum, totalTime)) - print('Time between Lap #%s and Lap #%s: %s' %(lapNum-1, lapNum, lapTine), end='') + print('Time between Lap #%s and Lap #%s: %s' %(lapNum-1, lapNum, lapTime), end='') print(' ') lapNum+=1; lastTime=time.time()