“comment traduire par une corde en différents alphabet python” Réponses codées

comment traduire par une corde en différents alphabet python

string = 'some string'

normal_alphabet = 'abcdefghijklmnopqrstuvwxyz.'
my_alphabet = 'ijklmnopqrstuvwxyz.abcdefgh'

translation = string.maketrans(normal_alphabet, my_alphabet)

print(string.translate(translation))
When was my last break?

Transformez les caractères en alpgabetic numper python

text = input()

def encrypt(t):
    chars = list(text)
    allowed_characters = list(" abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789,.?!")

    for char in chars:
        for i in allowed_characters:
            if char == i:
                chars[chars.index(char)] = allowed_characters.index(i)
    return chars

print(encrypt(text))
Itchy Ibex

Réponses similaires à “comment traduire par une corde en différents alphabet python”

Questions similaires à “comment traduire par une corde en différents alphabet python”

Plus de réponses similaires à “comment traduire par une corde en différents alphabet python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code