查找字符串中指定字符的位置
时间: 2023-09-03 09:11:10 浏览: 126
您好!要查找一个字符串中指定字符的位置,可以使用字符串的 `find()` 方法。例如,如果要查找字符 `a` 在字符串 `hello world` 中的位置,可以这样做:
```python
string = "hello world"
char = "a"
index = string.find(char)
print(index)
```
输出结果为:
```
-1
```
如果要查找的字符不在字符串中,`find()` 方法返回 `-1`。如果要查找的字符在字符串中,`find()` 方法返回该字符在字符串中第一次出现的索引位置。请注意,字符串的索引从 0 开始,因此第一个字符的索引为 0。
阅读全文