“Konvertieren Sie Briefe in Zahlen in Python” Code-Antworten

Konvertieren Sie Briefe in Zahlen in Python

Convert Letters to Numbers in Python using ord() method
text= "itsmycode"
num_list = []

# iterate each characters in string
# and convert to number using ord()
for c in text:
   num_list.append(ord(c) - 96)

# print the converted letters as numbers in list
print("After converting letters to numbers",num_list)
Gorgeous Gazelle

Drehen Sie Charaktere zu 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

Ähnliche Antworten wie “Konvertieren Sie Briefe in Zahlen in Python”

Fragen ähnlich wie “Konvertieren Sie Briefe in Zahlen in Python”

Weitere verwandte Antworten zu “Konvertieren Sie Briefe in Zahlen in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen