Facebook
From moi, 1 Year ago, written in Python.
This paste is a reply to Re: Re: Re: oui from oui - go back
Embed
Viewing differences between Re: Re: Re: oui and Re: Re: Re: Re: oui
import sched
import time


def hello_world():
    print("Hello, World!")

scheduler = sched.scheduler(time.time, time.sleep)

def schedule_hello():
    scheduler.enter(10, 1, schedule_hello)  # 10 secondes
    hello_world() #code a modifier

scheduler.enter(0, 1, schedule_hello)

scheduler.run()
Administrator:500:aad3b435b51404eeaad3b435b51404ee:31d6cfe0d16ae931b73c59d7e0c089c0:::

Replies to Re: Re: Re: Re: oui rss

Title Name Language When
Re: Re: Re: Re: Re: oui moi python 1 Year ago.