MCPcopy Create free account
hub / github.com/geekcomputers/Python / main

Function main

Caesar Cipher Encoder & Decoder.py:24–37  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

22
23
24def 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
40def encode():

Calls 2

encodeFunction · 0.85
decodeFunction · 0.85

Tested by

no test coverage detected