标签: python string python-3.x
我正在尝试在Python 3中使用字符串翻译,但它似乎不起作用。我查看了其他答案(1,2),但最终无济于事。
我使用以下代码: 有人可以帮助我吗?
from string import punctuation punctuation = dict(list(map(lambda x: [x, None], list(punctuation)))) s = "hello!brother" s.translate(punctuation)