Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
.translate(table) done with operator.methodcaller solution in Clear category for Atbash Cipher by Phil15
from string import ascii_lowercase as LOW, ascii_uppercase as UPP
from operator import methodcaller
atbash = methodcaller('translate', str.maketrans(LOW + UPP, LOW[::-1] + UPP[::-1]))
Dec. 1, 2021
Comments: