Multithreading

4 h 5 exercices Niveau 9

Énoncé

Écrivez un programme Python utilisant le module threading pour créer un compte à rebours de 10 secondes.

Exemple de Code

import threading
import time

def countdown():
    for i in range(10, 0, -1):
        print(i)
        time.sleep(1)
    print("Compte à rebours terminé!")

# Créer un thread
countdown_thread = threading.Thread(target=countdown)

# Démarrer le thread
countdown_thread.start()
logo discord

Besoin d'aide ?

Rejoignez notre communauté officielle et ne restez plus seul à bloquer sur un problème !

En savoir plus