Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from threading import Thread
- def mostrar_mensaje():
- print ("Creación de threads en Python")
- nuevo_thread = Thread(target=mostrar_mensaje)
- nuevo_thread.start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement