Advertisement
Fhernd

programar-tarea.py

Feb 17th, 2018
941
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. import sched, time
  2.  
  3.  
  4. def mostrar_mensaje():
  5.     print('Python 3.5.2')
  6.    
  7.  
  8. programacion = sched.scheduler()
  9. programacion.enter(10, 1, mostrar_mensaje);
  10. programacion.run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement