如何在python 3中使用字符串翻译

时间:2017-11-14 09:59:00

标签: python string python-3.x

我正在尝试在Python 3中使用字符串翻译,但它似乎不起作用。我查看了其他答案(12),但最终无济于事。

我使用以下代码: 有人可以帮助我吗?

from string import punctuation
punctuation = dict(list(map(lambda x: [x, None], list(punctuation))))
s = "hello!brother"
s.translate(punctuation)

0 个答案:

没有答案