summaryrefslogtreecommitdiff
path: root/cesar.py
diff options
context:
space:
mode:
Diffstat (limited to 'cesar.py')
-rw-r--r--cesar.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cesar.py b/cesar.py
index 886f48e..2186651 100644
--- a/cesar.py
+++ b/cesar.py
@@ -2,6 +2,7 @@
import string
+
def decalage(char, key):
liste = list(string.ascii_lowercase)*2 + list(string.ascii_uppercase)*2
if char not in liste:
@@ -42,7 +43,7 @@ while True:
msg += decalage(lettre, clef)
print(f"rot{clef} : {msg}")
msg = ""
- print("***************")
+ print("************")
case "q":
print("bye")
exit()