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

Function main

ciphers/rot13.py:23–30  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

21
22
23def main() -> None:
24 s0 = input("Enter message: ")
25
26 s1 = dencrypt(s0, 13)
27 print("Encryption:", s1)
28
29 s2 = dencrypt(s1, 13)
30 print("Decryption: ", s2)
31
32
33if __name__ == "__main__":

Callers 1

rot13.pyFile · 0.70

Calls 1

dencryptFunction · 0.85

Tested by

no test coverage detected