-
-
Notifications
You must be signed in to change notification settings - Fork 46.5k
/
Copy pathrot13.py
38 lines (30 loc) · 851 Bytes
/
rot13.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
def dencrypt(s: str) -> str:
"""
https://en.wikipedia.org/wiki/ROT13
>>> msg = "My secret bank account number is 173-52946 so don't tell anyone!!"
>>> s = dencrypt(msg)
>>> s
"Zl frperg onax nppbhag ahzore vf 173-52946 fb qba'g gryy nalbar!!"
>>> dencrypt(s) == msg
True
"""
out: list[str] = []
n = 13
for c in s:
if "A" <= c <= "Z":
out += chr(ord("A") + (ord(c) - ord("A") + n) % 26)
elif "a" <= c <= "z":
out += chr(ord("a") + (ord(c) - ord("a") + n) % 26)
else:
out += c
return "".join(out)
def main() -> None:
s0 = input("Enter message: ")
s1 = dencrypt(s0)
print("Encryption:", s1)
s2 = dencrypt(s1)
print("Decryption: ", s2)
if __name__ == "__main__":
import doctest
doctest.testmod()
main()