Vous n'êtes pas identifié(e).
- Contributions : Récentes | Sans réponse
Pages : 1
#1 13-05-2017 à 12:33
- zimou
- Membre
- Inscription : 08-05-2017 à 09:24
- Messages : 5
Re : Python, combinaisons de caracteres
Bonjour, j'ai fait ce code pour avoir toutes les combinaisons possible de 4lettres avec a,b,c et d mais python m'affiche l'erreur.
for a in range(4):
if a == 1:
v1 = 'a'
if a == 2:
v1 = 'b'
if a == 3:
v1 = 'c'
if a == 4:
v1 = 'd'
for b in range(4):
if b == 1:
v2 = 'a'
if b == 2:
v2 = 'b'
if b == 3:
v2 = 'c'
if c == 4:
v2 = 'd'
for c in range(4):
if c == 1:
v3 = 'a'
if c ==2:
v3 = 'b'
if c ==3:
v3 = 'c'
if c ==4:
v3 = 'd'
for d in range(4):
if d == 1:
v4 = 'a'
if d == 2:
v4 = 'b'
if d == 3:
v4 = 'c'
if d == 4:
v4 = 'd'
print(v1 + v2 + v3 + v4)
Hors ligne
Pages : 1
- Accueil
- » Programmation
- » Python, combinaisons de caracteres