We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74aeaa3 commit 8ffc4f8Copy full SHA for 8ffc4f8
ciphers/caesar_cipher.py
@@ -39,7 +39,7 @@ def brute_force(input_string: str) -> None:
39
40
def main():
41
while True:
42
- print(f'{"-" * 10}\n Menu\n{"-", * 10}')
+ print(f'{"-" * 10}\n Menu\n{"-" * 10}')
43
print(*["1.Encrpyt", "2.Decrypt", "3.BruteForce", "4.Quit"], sep="\n")
44
choice = input("What would you like to do?: ")
45
if choice not in ["1", "2", "3", "4"]:
0 commit comments