diff --git a/Caesar_Cipher.py b/Caesar_Cipher.py index a404a20..ad5da65 100644 --- a/Caesar_Cipher.py +++ b/Caesar_Cipher.py @@ -8,12 +8,12 @@ def encrypt(text, shift): count_text = len(text) - move = [] + move = '' for m in range(0, count_text): move += alphabet[shift] alphabet[shift] = alphabet[shift + 1] - shift = shift + 1 + shift += 1 print(move)