Advertisement
KodingKid

Making a countdown app in Python #1

Dec 18th, 2021
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. print("How long do you want to set your timer for?")
  2. input_time = int(input())
  3. import time
  4. time.sleep(input_time)
  5. print("TIMES UP!")
  6. #this is a work in progress as i want to work out how to make a countdown
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement