Skip to content

Commit f17ee9e

Browse files
authored
Add files via upload
1 parent 42b9e30 commit f17ee9e

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

timer.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import time
2+
3+
n = int(input("How long would you like to wait?"))
4+
n-=1
5+
while n > 0:
6+
print(n)
7+
n-=1
8+
time.sleep(1)

0 commit comments

Comments
 (0)