Upload code

This commit is contained in:
2025-01-20 19:40:14 +01:00
parent 71625e3e41
commit 07809d7d77
66 changed files with 8917 additions and 0 deletions

24
Animation/Wartesymbol.py Executable file
View File

@@ -0,0 +1,24 @@
import time
import os
strich = 1
while True:
for i in range(4):
print("Please wait...")
if strich == 1:
print("\t-", end="\r")
time.sleep(0.5)
elif strich == 2:
print("\t\\", end="\r")
time.sleep(0.5)
elif strich == 3:
print("\t|", end="\r")
time.sleep(0.5)
else:
print("\t/", end="\r")
time.sleep(0.5)
os.system( 'clear' )
strich += 1
strich = 1