()
| 22 | |
| 23 | |
| 24 | def main(): |
| 25 | print("[>] CAESAR CIPHER DECODER!!! \n") |
| 26 | print("[1] Encrypt\n[2] Decrypt") |
| 27 | |
| 28 | match input("Choose one of the above(example for encode enter 1): "): |
| 29 | case "1": |
| 30 | encode() |
| 31 | |
| 32 | case "2": |
| 33 | decode() |
| 34 | |
| 35 | case _: |
| 36 | print("\n[>] Invalid input. Choose 1 or 2") |
| 37 | main() |
| 38 | |
| 39 | |
| 40 | def encode(): |
no test coverage detected