Answers for "python alphabet to number"

0

turn characters to 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))
Posted by: Guest on December-13-2020
0

python alphabet to number

"80#101#114#102#99#116#64#48#55#"
Posted by: Guest on June-02-2021
0

python alphabet to number

"17#123#5621#"
Posted by: Guest on June-02-2021

Code answers related to "python alphabet to number"

Python Answers by Framework

Browse Popular Code Answers by Language