From 2638d57c7122baa39398ad47716c889b92957c3d Mon Sep 17 00:00:00 2001 From: Harshil Date: Wed, 24 Oct 2018 21:13:42 +0200 Subject: [PATCH] Update caesar_cipher.py --- ciphers/caesar_cipher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ciphers/caesar_cipher.py b/ciphers/caesar_cipher.py index 63c5a060..6cd35e73 100644 --- a/ciphers/caesar_cipher.py +++ b/ciphers/caesar_cipher.py @@ -53,7 +53,7 @@ def main(): elif choice == '2': strng = input("Please enter the string to be decrypted: ") while True: - key = raw_int(input("Please enter off-set between 1-94: ")) + key = int(input("Please enter off-set between 1-94: ")) if key > 0 and key <= 94: print(decrypt(strng, key)) main()