所以不久前,我向加密程序寻求帮助,
你们很了不起,并提出了解决方案。
因此,我再次找您寻求等效的解密程序的帮助。
到目前为止,我得到的代码是这样的:
whinger = 0
bewds = raw_input ('Please enter the encrypted message: ')
bewds = bewds.replace(' ', ', ')
warble = [bewds]
print warble
wetler = len(warble)
warble.reverse();
while whinger < wetler:
print chr(warble[whinger]),
whinger += 1
但是当我输入
101 103 97 115 115 101 109
出现输入不是整数的错误。
我需要的是,当我输入数字时,它将变成一个整数列表。
但我不想单独输入所有数字。
预先感谢您的帮助:P
最佳答案
要将输入字符串转换为整数列表:
numbers = [int(s) for s in "101 103 97 115 115 101 109".split()]
关于python - 用python制作解密程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14703684/