Python ASCII 字符串 转换

ASCII转字符.py

def ASCIItostr():
    try:
        s = input()
        s=s.split()
        for i in s:
            print(chr(int(i)),end="")
        print()
    except Exception as e:
        print("",end="")


if __name__ == '__main__':

    try:
        while True:
            ASCIItostr()
    except EOFError:
        exit()




字符转ASCII.py

def strtoASCII():
    try:
        s = input()
        for i in s:
            print(ord(str(i)),end=" ")
        print()
    except Exception as e:
        print("",end="")


if __name__ == '__main__':

    try:
        while True:
            strtoASCII()
    except EOFError:
        exit()


 

你可能感兴趣的:(Python,密码学)