寻找字符串“Ithink hope is a good thing.”中字符串“hope”的下标,🫓将字符串中的“hope”替换成其他事物,将新字符串保存到变量result中并在屏幕上输出
时间: 2023-05-24 17:07:01 浏览: 226
字符串子串寻找及替换
要寻找字符串“Ithink hope is a good thing.”中字符串“hope”的下标,可以使用Python的字符串方法find(),如下所示:
```python
string = "Ithink hope is a good thing."
index = string.find("hope")
print(index)
```
这将输出以下内容:
```
7
```
因为字符串“hope”从索引7处开始出现在原始字符串中。
要替换字符串中的“hope”,可以使用字符串方法replace():
```python
new_string = string.replace("hope", "love")
print(new_string)
```
这将输出以下内容:
```
Ithink love is a good thing.
```
您可以将新字符串保存到变量result中:
```python
result = string.replace("hope", "love")
print(result)
```
这将输出以下内容:
```
Ithink love is a good thing.
```
因此,结果字符串是“Ithink love is a good thing.”。
阅读全文