Cédric Lucantis wrote:
I don't see any string method to do that
>>> 'abcde'.translate(str.maketrans('','','bcd'))
'ae'
I do not claim this to be better than all the other methods,
but this pair can also translate while deleting, which others cannot.
--
http://mail.python.org/mailman/listinfo/python-list
