You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
213 B

from threading import *
import time
def hilo():
for i in range(10):
print('Hilo no Daemon (Foregoround)')
time.sleep(1)
t = Thread(target=hilo)
t.start()
time.sleep(5)
print('Hilo principal')

Powered by Informatica FP.