尝试使用替换功能 (python)

Trying to use replace function (python)

我正在学习python,即3.8版 尝试使用 replace() 函数替换字符串子字符串时。

str = "Python"
str.replace("th", "t")
print(str)

输出: Python

预期输出: 皮顿

replace() returns a copy of the string with all occurrences of substring old replaced by new

您需要分配一个变量来存储副本

str = "Python"
replaced_str= str.replace("th", "t")
print(replaced_str)