如下所示:
1
2
3
4
|
str_1='wo shi yi zhi da da niu '
char_1='i'
nPos=str_1.index(char_1)
print(nPos)
|
运行结果:7
========是使用find==========
1
2
3
4
|
str_1='wo shi yi zhi da da niu '
char_1='i'
nPos=str_1.find(char_1)
print(nPos)
|
结果:5
========如何查找所有‘i'在字符串中位置呢?===========
1
2
3
4
5
6
7
8
9
|
#开挂模式
str_1='wo shi yi zhi da da niu '
char_1=str(input('Please input the Char you want:'))
count=0
str_list=list(str_1)
for each_char in str_list:
count+=1
if each_char==char_1:
print(each_char,count-1)
|
运行结果:
1
2
3
4
5
|
Please input the Char you want:i
i 0
i 1
i 2
i 3
|
以上这篇Python 查找字符在字符串中的位置实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/DeniuHe/article/details/77131150