“Como traduzir para string para diferentes alfabetes python” Respostas de código

Como traduzir para string para diferentes alfabetes 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?

Transforme os caracteres em 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

Respostas semelhantes a “Como traduzir para string para diferentes alfabetes python”

Perguntas semelhantes a “Como traduzir para string para diferentes alfabetes python”

Mais respostas relacionadas para “Como traduzir para string para diferentes alfabetes python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código