爲什麼.strip()
在使用時不能刪除標點,如下所示,translate()
的使用方法?使用Python的.strip剝離標點()
s = 'Hello world! Good-bye world?'
s = s.strip(string.punctuation + string.whitespace).lower()
給出:'hello world! good-bye world'
s = translate(None, string.punctuation)
給出:hello world goodbye world
閱讀文檔;-) Strip僅適用於字符串的末尾,而不適用於字符串內部。 –