PY
py
1
2
3
4
5
6
7
8
9
10
alph = {"a":"z", "b":"y", "c":"x", "d":"w", "e":"v", "f":"u", "g":"t", "h":"s", "i":"r", "j":"q", "k":"p", "l":"o", "m":"n", "z":"a", "y":"b", "x":"c", "w":"d", "v":"e", "u":"f", "t":"g", "s":"h", "r":"i", "q":"j", "p":"k", "o":"l", "n":"m"}
txt = input().lower()
#low = txt.lower()
res = ' '
for i in txt:
res += (alph.get(i, alph[i]))
print(res)
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run