Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created February 17, 2018 23:28
Show Gist options
  • Save Fhernd/8b74af99c593a77a0098f7ff1f38e36b to your computer and use it in GitHub Desktop.
Save Fhernd/8b74af99c593a77a0098f7ff1f38e36b to your computer and use it in GitHub Desktop.
Programa una tarea en Python.
import sched, time
def mostrar_mensaje():
print('Python 3.5.2')
programacion = sched.scheduler()
programacion.enter(10, 1, mostrar_mensaje);
programacion.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment