“Cómo traducir a una cadena a diferentes Alphabet Python” Código de respuesta

Cómo traducir a una cadena a diferentes 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?

convertir los personajes a 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

Respuestas similares a “Cómo traducir a una cadena a diferentes Alphabet Python”

Preguntas similares a “Cómo traducir a una cadena a diferentes Alphabet Python”

Más respuestas relacionadas con “Cómo traducir a una cadena a diferentes Alphabet Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código