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

Function main

ciphers/rot13.py:14–21  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

12
13
14def main():
15 s0 = 'HELLO'
16
17 s1 = dencrypt(s0, 13)
18 print(s1) # URYYB
19
20 s2 = dencrypt(s1, 13)
21 print(s2) # HELLO
22
23
24if __name__ == '__main__':

Callers 1

rot13.pyFile · 0.70

Calls 1

dencryptFunction · 0.85

Tested by

no test coverage detected