Skip to main content
The National Cipher Challenge

Reply To: 9B

#99105
F6EXB_the_frenchy
Participant
n = 1
texte_chiffre=""
groupe = ""
for i in range(0,len(code1),n): # Parcourt le texte code1
    groupe = code1[i:i+n] + " " # Sélectionne 3 caracères
    texte_chiffre += groupe
Report a problem