Skip to content

Commit 54fbf7f

Browse files
authored
Update Caesar_Cipher.py
1 parent c650e94 commit 54fbf7f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Cryptography/Caesar_Cipher.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def decrypt(encrypted_string,key_val):
1919
if (decrypt_char > 90):
2020
decrypt_char = 65 - ( 90 - decrypt_char)
2121
decrypt_char = chr(decrypt_char)
22+
decrypt_char = decrypt_char.lower()
2223
final += decrypt_char
2324
return final
2425

0 commit comments

Comments
 (0)