We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 471b311 commit 2638d57Copy full SHA for 2638d57
ciphers/caesar_cipher.py
@@ -53,7 +53,7 @@ def main():
53
elif choice == '2':
54
strng = input("Please enter the string to be decrypted: ")
55
while True:
56
- key = raw_int(input("Please enter off-set between 1-94: "))
+ key = int(input("Please enter off-set between 1-94: "))
57
if key > 0 and key <= 94:
58
print(decrypt(strng, key))
59
main()
0 commit comments