Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
23
def
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
33
if
__name__ ==
"__main__"
:
Callers
1
rot13.py
File · 0.70
Calls
1
dencrypt
Function · 0.85
Tested by
no test coverage detected