Skip to content

Commit 2638d57

Browse files
authored
Update caesar_cipher.py
1 parent 471b311 commit 2638d57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ciphers/caesar_cipher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def main():
5353
elif choice == '2':
5454
strng = input("Please enter the string to be decrypted: ")
5555
while True:
56-
key = raw_int(input("Please enter off-set between 1-94: "))
56+
key = int(input("Please enter off-set between 1-94: "))
5757
if key > 0 and key <= 94:
5858
print(decrypt(strng, key))
5959
main()

0 commit comments

Comments
 (0)