提供了一些字串操作基本功能
str.translate(table[, deletechars])
translate可以依據table來轉換str
如果轉換的目標是None,則match的字元就會被刪除
>>> 'read this short text'.translate(None, 'aeiou') 'rd ths shrt txt'
參考網址https://docs.python.org/2.7/library/string.html?highlight=translate#module-string
沒有留言:
張貼留言