Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 491 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 491 Bytes

Python Projects: Countdown Timer 🐍

Python Script
This repo contains python code that generates a timer.
Run the code.

Python

import time

def countdown(t):
    while t:
        mins, secs = divmod(t, 60)
        timer = '{:02d}:{:02d}'.format(mins, secs)
        print(timer, end="\r")
        time.sleep(1)
        t -= 1


    print('Timer completed!')

t = input('Enter the time in seconds: ')

countdown(int(t))

Output

00:60
Timer completed!