Skip to content

Commit c650e94

Browse files
authored
Update Caesar_Cipher.py
1 parent 0a1f34e commit c650e94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cryptography/Caesar_Cipher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def decrypt(encrypted_string,key_val):
1212
'''This is the decryption function
1313
It takes in input encrypted string and key value
1414
Prints nothing and return the decrypted string value'''
15-
final = '"'
15+
final = ""
1616
encrypted_string = encrypted_string.upper()
1717
for i in range(len(encrypted_string)):
1818
decrypt_char = ord(encrypted_string[i]) + key_val

0 commit comments

Comments
 (0)