我正在尝试根据八个字符键计算偏移因子,这是一个字符串。我一直在尝试这种方法:
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'
但我知道有什么问题,但我不知道如何修复它?