从八个字符键计算偏移因子?

时间:2016-02-25 19:09:34

标签: python-3.x encryption

我正在尝试根据八个字符键计算偏移因子,这是一个字符串。我一直在尝试这种方法:

EightCharakey = input("Please enter the eight charatcer key used to encrypt the message") for i in EightCharaKey: print (int(ord(i)) offset = offset + i 此输出(最后一行)TypeError: unsupported operand type(s) for +: 'int' and 'str'但我知道有什么问题,但我不知道如何修复它?

0 个答案:

没有答案