在Python 3.x 中使用string.replace()
Python 3.x 中不建議使用string.replace() 方法。它仍然是執行字串替換的有效方法。 string.replace() 的語法從 Python 2.x 到 3.x 沒有更改。
範例:
>>> 'Hello world'.replace('world', 'Guido') 'Hello Guido'
在此範例中, '原始字串中的「world」子字串被「Guido」取代。產生的字串是一個新對象,因此原始字串沒有被修改。
以上是Python 3 的 `string.replace()` 方法已棄用嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!