Subir archivos a "/"

This commit is contained in:
Borjabs 2024-10-15 17:18:42 +00:00
parent 858bc8ac1c
commit 7912344f68
1 changed files with 19 additions and 0 deletions

19
ej2.py Normal file
View File

@ -0,0 +1,19 @@
import threading
import time
import random
def escribePunto():
for i in range(100):
print (".", end="",flush=True)
#time.sleep(0.1)
random.uniform(0.1,0.2)
return
print ("INICIO")
t = threading.Thread(target=escribePunto)
t.start()
for i in range(50):
print ("-", end="",flush=True)
#time.sleep(0.2)
random.uniform(0.1,0.2)