Python/ciphers/Atbash.py
2019-05-26 22:10:04 +05:30

14 lines
360 B
Python

def Atbash():
inp=raw_input("Enter the sentence to be encrypted ")
output=""
for i in inp:
extract=ord(i)
if extract>=65 and extract<=90:
output+=(unichr(155-extract))
elif extract>=97 and extract<=122:
output+=(unichr(219-extract))
else:
output+=i
print output
Atbash() ;