Python中拆分hello world,打印为hello my world,代码实现
时间: 2023-07-25 16:20:26 浏览: 178
可以使用字符串的 `replace()` 方法来替换字符串中的某个部分。
下面是一个将字符串中的 "world" 替换为 "my world" 的例子:
```python
my_string = "hello world"
new_string = my_string.replace("world", "my world")
print(new_string) # 输出 "hello my world"
```
在这个例子中,我们定义了一个字符串 `my_string`,它包含 "hello world"。我们调用 `replace()` 方法,将字符串中的 "world" 替换为 "my world",并将结果保存在变量 `new_string` 中。最后,我们打印出 `new_string`,输出的结果是 "hello my world"。
需要注意的是,`replace()` 方法返回的是一个新的字符串,原来的字符串并不会被修改。因此,在上面的例子中,`my_string` 的值仍然是 "hello world",而不是 "hello my world"。如果想要改变原来的字符串,需要将 `new_string` 的值赋回给 `my_string`。
下面是一个完整的代码实现:
```python
my_string = "hello world"
my_string = my_string.replace("world", "my world")
print(my_string) # 输出 "hello my world"
```
在这个例子中,我们先将原字符串 "hello world" 赋值给变量 `my_string`。然后,我们调用 `replace()` 方法,将 "world" 替换为 "my world",并将结果再次赋值给 `my_string`。最后,我们打印出 `my_string`,输出的结果是 "hello my world"。
阅读全文