wip
This commit is contained in:
parent
00f1e6a80f
commit
bae6b7b92e
|
@ -0,0 +1,13 @@
|
|||
import threading
|
||||
|
||||
def escribeY():
|
||||
for i in range(1000):
|
||||
print ("y", end="",flush=True)
|
||||
return
|
||||
|
||||
print ("INICIO")
|
||||
t = threading.Thread(target=escribeY)
|
||||
t.start()
|
||||
|
||||
for i in range(1000):
|
||||
print ("X", end="",flush=True)
|
Loading…
Reference in New Issue