python find()用法
Posted liucx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python find()用法相关的知识,希望对你有一定的参考价值。
案例:
### 1 ###
str = "01213456"
if str.find("23"):
print "YES!"
else:
print "NO!"
### 2 ###
str = "01213456"
if str.find("23"):
print "YES!"
else:
print "NO!"
上两个案例结果都为“YES!”, 非常令我吃惊,2不应该是NO!吗?
这里注意两点:
1. if str.find(‘23‘): 此时默认为 str.find(‘23‘) != 0:
2. find()函数找不到时返回为-1。
经查阅得知其用法:
函数原型:find(str, pos_start, pos_end)
解释:
- str:被查找“字串”
- pos_start:查找的首字母位置(从0开始计数。默认:0)
- pos_end: 查找的末尾位置(默认-1)
返回值:如果查到:返回查找的第一个出现的位置。否则,返回-1。
举例论证:
1.str = "0123"
print str.find("2",1,-1) #2
2.str = "1111"
print str.find("1") #0,首次出现的位置
以上是关于python find()用法的主要内容,如果未能解决你的问题,请参考以下文章
find_all的用法 Python(bs4,BeautifulSoup)
关于Python selenium,无法使用,find_element求大神指点
mvn命令异常:An error has occurred in Javadoc report generation: Unable to find javadoc command异常已解决(代码片段