From 85bcafcd236c599ce02bdb13f21ac899d02cd014 Mon Sep 17 00:00:00 2001 From: pythonboi Date: Fri, 10 Sep 2021 03:01:45 -0400 Subject: [PATCH] adjust the code to clean and readable --- Caesar_Cipher.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/Caesar_Cipher.py b/Caesar_Cipher.py index ad5da65..e3bbd7a 100644 --- a/Caesar_Cipher.py +++ b/Caesar_Cipher.py @@ -17,23 +17,5 @@ def encrypt(text, shift): print(move) - # for run in range(0, count_text): - # move += alphabet[shift] - # - # - # - # - # - # - # - # - # for check in move: - # if check in move: - # newShift = alphabet[move] + 1 - # newShift += 1 - # move += alphabet[newShift] - # - # print(move) - encrypt(text=text, shift=shift)