因此,对于考试问题,我遵循了这个特定的伪代码,它基本上制作了一个使用与凯撒密码相同的原理加密数字序列的程序。它应该可以工作,但由于某种原因它会返回错误。
TypeError: 'int' object is not iterable
代码如下,希望大家能帮帮我,不胜感激
plainNum = input("enter a number to encode ")
codedNum = ' '
Key = input("enter a key ")
for i in plainNum:
codedNum = codedNum + str((int(i)+key)%10)
print codedNum