import threading
import time

class MonThread (threading.Thread):
    def run (self):
        while True:
            time.sleep (1)
            print ('Bonjour')

t = MonThread ()
t.start ()
