在Python 3.x 中使用String Replace
在Python 2.x 中,str.replace() 是string 類別的方法。但是,在 Python 3.x 中,此方法已被棄用。那麼,Python 3.x 中執行字串替換的新方法是什麼?
答案很簡單,使用 str 類別的 Replace() 方法。
例如:
>>> 'Hello world'.replace('world', 'Guido') 'Hello Guido'
如您所見,Python 3.x 中的 Replace() 方法的語法和功能與 Python 2.x 中的相同。唯一的區別是它現在是 str 類別的一個方法,而不是一個單獨的函數。
以上是Python 3.x 中的字串替換如何運作?的詳細內容。更多資訊請關注PHP中文網其他相關文章!