first push

This commit is contained in:
2025-10-13 09:21:50 +02:00
commit 13a5681eac
4 changed files with 93 additions and 0 deletions

13
count.py Normal file
View File

@@ -0,0 +1,13 @@
import time
inVal = input("how long in Minutes ? :")
inVal = int(inVal)
inVal = inVal * 60
for i in range(inVal , 0 , -1):
print(i)
time.sleep(1)
print("tadaaa")