So the interesting content would be:

Example (Atbash for English letters only):

def atbash(text): result = "" for c in text: if c.isalpha(): if c.islower(): result += chr(219 - ord(c)) else: result += chr(155 - ord(c)) else: result += c return result print(atbash("danlwd fyltr shkn")) # try it

It looks like the phrase you provided is a mix of apparent ciphertext (possibly a simple shift cipher like Atbash or Caesar) and a broken mix of Arabic or transliterated words.

Leave a Reply