千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

上海
  • 北京
  • 郑州
  • 武汉
  • 成都
  • 西安
  • 沈阳
  • 广州
  • 南京
  • 深圳
  • 大连
  • 青岛
  • 杭州
  • 重庆
当前位置:郑州千锋IT培训  >  技术干货  >  Python中字符串如何查找?

Python中字符串如何查找?

来源:千锋教育
发布人:xqq
时间: 2023-11-12 14:29:59

Python使用字符串的过程中,如果遇到很多的字符串,想要查找到想要的字符串有些困难。本文主要介绍Python字符串查找的几种方法:find方法、index方法、rfind方法、rindex方法。具体请看如下内容:

find方法

find方法获取值时,如果要查找的值不存在,会返回-1

str.find(str,beg=0,end=len(string))

使用实例

#stringinwhichwehavetofindthesub_string

str="Helloworld,howareyou?"

#sub_stringtofindthegivenstring

sub_str="how"

#findbysub_str

print(str.find(sub_str))

#findbysub_strwithslice:startindex

print(str.find(sub_str,10))

#findbysub_strwithslice:startindexandslice:endindex

print(str.find(sub_str,10,24))

#findasub_strthatdoesnotexist

sub_str="friend"

#findbysub_str

print(str.find(sub_str))

#findasub_strwithdifferentcase

sub_str="HOW"

#findbysub_str

print(str.find(sub_str))

输出

13

13

13

-1

-1

index方法

在获取值得索引时,如果不存在值,会报错

str.index(str,beg=0,end=len(string))

使用实例

defsecond_index(text:str,symbol:str):

"""

returnsthesecondindexofsymbolinagiventext

"""

try:

returntext.index(symbol,text.index(symbol)+1)

exceptValueError:

returnNone

if__name__=='__main__':

#These"asserts"usingonlyforself-checkingandnotnecessaryforauto-testing

print('Example:')

print(second_index("sims","s"))

assertsecond_index("sims","s")==3,"First"

assertsecond_index("findtheriver","e")==12,"Second"

assertsecond_index("hi","")isNone,"Third"

assertsecond_index("himayor","")isNone,"Fourth"

assertsecond_index("himrMayor","")==5,"Fifth"

print('Youareawesome!Alltestsaredone!GoCheckit!')

注意:

find()和index()只能找到第一个索引值。如果指定字符同时存在多个,只会输出第一个指定字符的索引值。

rfind和rindex方法用法和上面一样,只是从字符串的末尾开始查找。

以上内容为大家介绍了Python中字符串如何查找?希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:千锋教育。

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。

猜你喜欢LIKE

python判断xml是否存在某一节点?

2023-11-12

python中有跳转语句吗?

2023-11-12

Python中字符串如何查找?

2023-11-12

最新文章NEW

怎么查看python变量值

2023-11-12

python的配置文件怎样写?

2023-11-12

如何使用python中range()函数实现逆序遍历?

2023-11-12

相关推荐HOT

更多>>

快速通道 更多>>

最新开班信息 更多>>

网友热搜 更多>>