Skip to content

Instantly share code, notes, and snippets.

@AnnikaNoren
Created November 12, 2020 17:45
Show Gist options
  • Save AnnikaNoren/5d538ad40a0b23d2249f3c83697b1232 to your computer and use it in GitHub Desktop.
Save AnnikaNoren/5d538ad40a0b23d2249f3c83697b1232 to your computer and use it in GitHub Desktop.
firstString = "abc"
secondString = "ghi"
thirdString = "ab"
string = "abcdef"
translation = string.maketrans(firstString, secondString, thirdString)
print(translation)
print("Translated string:", string.translate(translation))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment