Created
November 12, 2020 17:45
-
-
Save AnnikaNoren/5d538ad40a0b23d2249f3c83697b1232 to your computer and use it in GitHub Desktop.
This file contains 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
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