Skip to content

Instantly share code, notes, and snippets.

@alumag
Created September 28, 2018 19:08
Show Gist options
  • Save alumag/38c822cb37df519650a7062463ee41d3 to your computer and use it in GitHub Desktop.
Save alumag/38c822cb37df519650a7062463ee41d3 to your computer and use it in GitHub Desktop.
translate Hebrish to English
english = "poiuytrewqlkjhgfdsamnbvcxz"
hebrew = "פםןוטארק'/ךלחיעכגדשצמנהבסז"
if all([*map(lambda c: (c in hebrew), HEBRISH_TEXT)]):
text = ''.join([*map(lambda x: (english[hebrew.index(x)]), HEBRISH_TEXT)])
@alumag
Copy link
Author

alumag commented Sep 28, 2018

HEBRISH_TEXT = "ןךםהקבשאד"
>> "ilovecats"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment