(time_sec)
| 2 | |
| 3 | |
| 4 | def countdown(time_sec): |
| 5 | while time_sec: |
| 6 | mins, secs = divmod(time_sec, 60) |
| 7 | timeformat = "{:02d}:{:02d}".format(mins, secs) |
| 8 | print(timeformat, end="\r") |
| 9 | time.sleep(1) |
| 10 | time_sec -= 1 |
| 11 | |
| 12 | print("Time Up") |
| 13 | |
| 14 | |
| 15 | if __name__ == "__main__": |