Add files via upload (#396)

This commit is contained in:
Shubhayu Das 2019-05-26 22:10:04 +05:30 committed by Anup Kumar Panwar
parent 7f4f565e62
commit 5be32f4022

14
ciphers/Atbash.py Normal file
View File

@ -0,0 +1,14 @@
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() ;