标签: python methods replace
已经超过20分钟,我试图弄清楚我做错了什么这么简单,World没有变成There这段代码:
World
There
test = "Hello World" print test test.replace("World", "There") print test
我知道可以用其他方法替换单词,我只想知道我在这里做错了什么。 :(