Subir archivos a "/"
This commit is contained in:
parent
5bd6eada90
commit
d6f98dea08
|
@ -0,0 +1,13 @@
|
||||||
|
import threading
|
||||||
|
|
||||||
|
def SaludoDos():
|
||||||
|
print("Hola, soy el 2")
|
||||||
|
tTres = threading.Thread(target=SaludoTres)
|
||||||
|
tTres.start()
|
||||||
|
|
||||||
|
def SaludoTres():
|
||||||
|
print("Hola, soy el 3 y ultimo")
|
||||||
|
|
||||||
|
tDos = threading.Thread(target=SaludoDos)
|
||||||
|
tDos.start()
|
||||||
|
print("Hola, soy el 1 y primero")
|
Loading…
Reference in New Issue