Skip to content

Instantly share code, notes, and snippets.

@GitHub30
Created May 4, 2022 22:46
Show Gist options
  • Select an option

  • Save GitHub30/47671e076eea071ddc8e00b7376616d3 to your computer and use it in GitHub Desktop.

Select an option

Save GitHub30/47671e076eea071ddc8e00b7376616d3 to your computer and use it in GitHub Desktop.
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