Python 3

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 3相关的知识,希望对你有一定的参考价值。

python中的find、rfind、index、rindex

 

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

检测字符串中是否包含子字符串 str ,如果指定 beg(开始) 和 end(结束) 范围,则检查是否包含在指定范围内,如果指定范围内如果包含指定索引值,返回的是索引值在字符串中的起始位置。如果不包含索引值,返回-1。

zimu= "ABCDEFGHIJKLMNOPQRSTUVWXYZ"

print(zimu.find("Z"))
print(zimu.find("Z",0,len(zimu)-1))

结果:

25

-1

 

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

返回字符串最后一次出现的位置,如果没有匹配项则返回-1。

zimu= "ABCDEFGHIJKLMNOPQRSTUVWXYZA"

print(zimu.rfind("A"))
print(zimu.rfind("A",1,len(zimu)-1))

结果:

26

-1

 

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

检测字符串中是否包含子字符串 str ,如果指定 beg(开始) 和 end(结束) 范围,则检查是否包含在指定范围内,该方法与 python find()方法一样,只不过如果str不在 string中会报一个异常。

zimu= "ABCDEFGHIJKLMNOPQRSTUVWXYZ"

print(zimu.index("Z"))
print(zimu.index("Z",0,len(zimu)-1))

结果:

25
Traceback (most recent call last):
File "/tmp/291714584/main.py", line 3, in <module>
print(zimu.index("Z",0,len(zimu)-1))
ValueError: substring not found

 

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

返回子字符串 str 在字符串中最后出现的位置,如果没有匹配的字符串会报异常。

zimu= "ABCDEFGHIJKLMNOPQRSTUVWXYZA"

print(zimu.rindex("A"))
print(zimu.rindex("A",1,len(zimu)-1))

结果:

26
Traceback (most recent call last):
File "/tmp/549676225/main.py", line 3, in <module>
print(zimu.rindex("A",1,len(zimu)-1))
ValueError: substring not found

 

 

 

 

以上是关于Python 3的主要内容,如果未能解决你的问题,请参考以下文章

常用python日期日志获取内容循环的代码片段

python 有用的Python代码片段

Python 向 Postman 请求代码片段

[未解决问题记录]python asyncio+aiohttp出现Exception ignored:RuntimeError('Event loop is closed')(代码片段

python [代码片段]一些有趣的代码#sort

使用 Python 代码片段编写 LaTeX 文档