diff --git a/countUpTime.py b/countUpTime.py new file mode 100644 index 0000000..7fcf2c7 --- /dev/null +++ b/countUpTime.py @@ -0,0 +1,13 @@ +import time + +def countdown(time_sec): + while time_sec: + mins, secs = divmod(time_sec, 60) + timeformat = '{:02d}:{:02d}'.format(mins, secs) + print(timeformat, end='\r') + time.sleep(1) + time_sec -= 1 + + print("stop") + +countdown(5)