1 devlog
0s
This is my first project on Flavortown. I’m excited to share my progress!
This is my first project on Flavortown. I’m excited to share my progress!
import time
my_time = int(input(“Enter the time in seconds –>”))
for x in range(my_time, 0, -1):
print(x)
time.sleep(1)
print(“Time’s up!!”)
Log in to leave a comment