create countdown time python code example
Example: how to make a timer in python
#Timer in python
#pip install playsound
import time
import playsound
question = int(input('How many seconds to wait: '))
time.sleep(question)
playsound.playsound('Hello.mp3')