python3 maketrans() method
keyword = keyword.translate(str.maketrans(’’,’’,string.punctuation)) # Remove punctuation from the string.**
Python3.4 已经没有 string.maketrans() 了,取而代之的是内建函数: bytearray.maketrans()、bytes.maketrans()、str.maketrans() 。
1)一个参数,该参数必须为字典
d = {‘a’:‘1’,‘b’:‘2’,‘
原创
2020-09-28 07:38:31 ·
344 阅读 ·
1 评论