python中find函数的用法
时间: 2023-09-25 11:12:20 浏览: 59
python find函数
5星 · 资源好评率100%
Python中的find函数用于在一个字符串内查找指定子字符串,返回子字符串第一次出现索引值。如果子字符串不存在,则返回-1。
例如:
```python
str1 = "Hello"
idx = str1.find("World") # 查找子字符串 "World"
print(idx) # 输出:6
```
如果要查找的子字符串不存在:
```python
str1 = "Hello World"
idx = str1.find("Python") # 查找子字符串 "Python"
print(idx) # 输出:-1
```
阅读全文