Created
May 4, 2022 22:46
-
-
Save GitHub30/47671e076eea071ddc8e00b7376616d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| translate = lambda text, table: [text := text.replace(k, table[k]) for k in table][-1] | |
| translate("Lorem ipsum dolor sit amet", {'amet': '','a': '','e': '','i': '','o': '','u': ''}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment