Advertisement
Fhernd

crear-histograma.py

Feb 15th, 2018
863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. from threading import Thread
  2.  
  3.  
  4. def mostrar_mensaje():
  5.     print ("Creación de threads en Python")
  6.  
  7.  
  8. nuevo_thread = Thread(target=mostrar_mensaje)
  9.  
  10. nuevo_thread.start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement