这是迄今为止我为即将到来的 AS 计算初步代码编辑的代码。这是家庭作业,我不知道为什么它不起作用。有什么建议么?谢谢
def GetKeyForCaesarCipher():
while True:
key = int(raw_input('Enter the amount that shifts the plaintext alphabet to the ciphertext alphabet: '))
try:
i = int(key)
break
except ValueError:
print 'please enter an interger'
return (key)