Python/ciphers/atbash.py
2019-07-11 11:16:42 +02:00

24 lines
498 B
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

try: # Python 2
raw_input
unichr
except NameError: # Python 3
raw_input = input
unichr = chr
def Atbash():
output=""
for i in raw_input("Enter the sentence to be encrypted ").strip():
extract = ord(i)
if 65 <= extract <= 90:
output += unichr(155-extract)
elif 97 <= extract <= 122:
output += unichr(219-extract)
else:
output+=i
print(output)
if __name__ == '__main__':
Atbash()