手机
当前位置:查字典教程网 >脚本专栏 >python >Python中的index()方法使用教程
Python中的index()方法使用教程
摘要:index()方法确定字符串str,如果起始索引beg和结束索引end在末尾给出了找到字符串或字符串的一个子串。这个方法与find()方法一...

index()方法确定字符串str,如果起始索引beg和结束索引end在末尾给出了找到字符串或字符串的一个子串。这个方法与find()方法一样,只是如果没有找到子符趾会抛出一个异常。

语法

以下是index()方法的语法:

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

参数

str -- 此选项指定要搜索的字符串。 beg -- 这是开始索引,默认情况下是 0。 end -- 这是结束索引,默认情况下它等于该字符串的长度。

返回值

方法返回索引,如果找到这个str;如果没有找到则抛出一个异常。

例子

下面的例子显示了index()方法的使用。

#!/usr/bin/python str1 = "this is string example....wow!!!"; str2 = "exam"; print str1.index(str2); print str1.index(str2, 10); print str1.index(str2, 40);

当我们运行上面的程序,它会产生以下结果:

15 15 Traceback (most recent call last): File "test.py", line 8, in print str1.index(str2, 40); ValueError: substring not found shell returned 1

【Python中的index()方法使用教程】相关文章:

Python中的yield浅析

Python Web服务器Tornado使用小结

Python MD5文件生成码

Python中的CURL PycURL使用例子

如何运行Python程序的方法

python迭代器的使用方法实例

Python中字典(dict)和列表(list)的排序方法实例

python中定义结构体的方法

python的绘图工具matplotlib使用实例

python 字符串split的用法分享

精品推荐
分类导航