python遍历一个字符串遇到目标字符则输出
时间: 2024-11-12 12:31:44 浏览: 8
Python openpyxl 遍历所有sheet 查找特定字符串的方法
Python遍历字符串并遇到特定字符时输出可以采用多种方式实现,这里我们给出两种示例:
1. **使用`for`循环**[^2]:
```python
strs = 'your_string'
target_char = 't'
# 使用for循环遍历字符串
for i, char in enumerate(strs):
if char == target_char:
print(f"Found '{target_char}' at index {i}")
```
这段代码会遍历字符串,当找到目标字符`target_char`时,它会在控制台输出该字符的位置。
2. **使用内置函数`enumerate`结合条件判断**[^1]:
```python
def find_and_output(strDemo, target_char):
for index, char in enumerate(strDemo):
if char == target_char:
print(f"'{target_char}' found at position {index}")
find_and_output('pythontab.com', 'o')
```
此方法同样会在找到目标字符时打印其位置。
阅读全文