如何在 Python 3.x 中替换子字符串
简介:
Python 的字符串。 Replace() 方法在 Python 3.x 中已被弃用。本文探讨了 Python 3 中替换子字符串的新的推荐方法。
新方法:使用 str.replace()
与 Python 2.x 中一样,Python 3.x 提供了 str.replace() 方法作为 string.replace() 的替代方法。它遵循相同的语法和行为:
original_string.replace(old_substring, new_substring, count)
示例:
要将字符串“Hello world”中的单词“world”替换为“Guido”:
>>> 'Hello world'.replace('world', 'Guido') 'Hello Guido'
附加说明:
>>> 'This is is is not is a test'.replace('is', 'are', 2) 'This are are is not is a test'
以上是如何在Python 3.x中替换子字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!