J'ai un script et je veux qu'une fonction s'exécute en même temps que l'autre. L'exemple de code que j'ai regardé: import threading def MyThread (threading.thread): # doing something........ def MyThread2 (threading.thread): # doing something........ MyThread().start() MyThread2().start() J'ai du...