martes, 13 de noviembre de 2018

PRACTICA #12: HILOS CON START MODIFICACION DE LA MAESTRA

"Generar Thread"

import threading
import time
stop = 0


def hola_mundo(nombre):
    cont = 0
    play=1
    while play == 1:
        print ("Hola Mundo" + nombre)
        time.sleep(1) #tiempo que duerme el programa
        cont = cont + 1
        if cont == 10:
            play = 2


if __name__ == "__main__":
    hilos = threading.Thread(target =hola_mundo, args = (" Ivan ",) )
    hilos.start()
    print("Hola mundo desde el hilo principal")

No hay comentarios:

Publicar un comentario

U4: PRACTICA #21 JUEGO EN 3D