-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathROT13.py
36 lines (36 loc) · 1.05 KB
/
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
def encrypt(text):
result=""
ascno_e=0
for i in text:
if i.isupper():
ascno_e=ord('A')+((ord(i)-ord('A')+13)%26)
result=result+chr(ascno_e)
elif i.islower():
ascno_e= ord('a')+((ord(i)-ord('a')+13)%26)
result=result+chr(ascno_e)
elif i==" ":
result=result+" "
else:
result="INVALID INPUT you can only encrypt alphabets with this algo"
return result
return result
def decrypt(text):
result=""
ascno_d=0
for i in text:
if i.isupper():
ascno_d=ord('A')+((ord(i)-ord('A')-13)%26)
result=result+chr(ascno_d)
elif i.islower():
ascno_d= ord('a')+((ord(i)-ord('a')-13)%26)
result=result+chr(ascno_d)
elif i==" ":
result=result+" "
else:
result="INVALID INPUT you can only encrypt alphabets with this algo"
return result
if __name__ == "__main__":
x=encrypt('Hey Fellas')
print(x)
print("##")
print(decrypt(x))