Is there a way to do character translation (kind of like the tr command) using python
|
|
|
|
|
|
|
See
Note the doc's comments about subtleties in the translation of unicode strings. Edit: Since |
|||
|
|
|
|
if your are using python3 translate is less verbose:
Ahh.. and there is also equivalent to tr -d:
for python2.x use additional argument to translate function:
|
|||
|
|
