vote up 2 vote down star

Is there a way to do character translation (kind of like the tr command) using python

flag

2 Answers

vote up 6 vote down check

See string.translate

import string
"abc".translate(string.maketrans("abc", "def") # => "def"

Note the doc's comments about subtleties in the translation of unicode strings.

Edit: Since tr is a bit more advanced, also consider using re.sub.

link|flag
vote up 2 vote down

if your are using python3 translate is less verbose:

>>> 'abc'.translate(str.maketrans('ac','xy'))
'xby'

Ahh.. and there is also equivalent to tr -d:

>>> "abc".translate(str.maketrans('','','b'))
'ac'

for python2.x use additional argument to translate function:

>>> "abc".translate(None, 'b')
'ac'
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.