python中find函数是什么意思
python中find函数是实现检索字符串并且输出运算值的意思,语法格式为:“str.find(str, beg=0, end=len(string))”,这里“str”代表指定检索的字符串、“beg”代表开始索引,默认为0、“end”代表结束索引,默认为字符串的长度。
具体使用步骤:
首先打开python编辑器,新建一个python项目。
在python项目中定义2个字符串。
str1 = "this is string example....wow!!!";
str2 = "exam";
再使用find函数检测字符串str1中是否包含子字符串str2并返回索引值。
print str1.find(str2);
返回结果:
15
相关示例代码:
mystring = "Meet Guru99 Tutorials Site.Best site for Python Tutorials!"
print("The position of Best site is at:", mystring.find("Best site", 5, 40))
print("The position of Guru99 is at:", mystring.find("Guru99", 20))
#输出结果
The position of Best site is at: 27
The position of Guru99 is at: -1
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341