IA_TP_LAWSON-LARTEGO/TPIA/jeu_nim/exo1.py

25 lines
494 B
Python
Raw Permalink Normal View History

2024-10-23 21:37:10 +02:00
def afficher_etat(etat_jeu):
print("État actuel du jeu:")
for i, tas in enumerate(etat_jeu):
print(f"Tas {i+1}: {tas} objets")
#etat_jeu = [3, 4, 5]#
#afficher_etat(etat_jeu)#
# Test de la fonction avec plusieurs configurations
configurations = [
[3, 4, 5],
[1, 0, 2],
[0, 0, 1],
[4, 4, 4],
[5, 1, 0, 2]
]
for etat in configurations:
afficher_etat(etat)
print('-' * 20) # Pour séparer les affichages entre les tests