diff options
Diffstat (limited to 'cesar.py')
| -rw-r--r-- | cesar.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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() |
