Afficher la solution
Cacher la solution
# ETAPE 1 from random import randrange # ETAPE 2 mot = str(input('Mot: ')) # ETAPE 3 mot = list(mot) nouveauxMot = '' for i in range(0, len(mot)): index = randrange(0, len(mot)) nouveauxMot += mot[index] del mot[index] # ETAPE 4 print(nouveauxMot)