https://fr.wikibooks.org/wiki/Programmation_Python/Les_threads
#!/usr/bin/env python # coding: utf-8 import threading import time def loop1_10(): for i in range(1, 11): time.sleep(1) print(i) threading.Thread(target=loop1_10).start()