Python 官方文档:入门教程 => 点击学习
小编给大家分享一下python中index代表了什么,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!Python有哪些常用库python常用的库:1.requesuts;2.scrapy;3.pillow;4.twisted
小编给大家分享一下python中index代表了什么,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
python常用的库:1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。
Python index()方法检测字符串中是否包含子字符串str ,如果指定beg(开始)和end(结束)范围,则检查是否包含在指定范围内,该方法与python find()方法一样,只不过如果str不在string中会报一个异常。
语法
index()方法语法:
str.index(str, beg=0, end=len(string))
参数
·str -- 指定检索的字符串。
·beg -- 开始索引,默认为0。
·end -- 结束索引,默认为字符串的长度。
返回值
如果包含子字符串返回开始的索引值,否则抛出异常。
实例
以下实例展示了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);
以上实例输出结果如下:
1515Traceback (most recent call last): File "test.py", line 8, in print str1.index(str2, 40);ValueError: substring not foundshell returned 1
看完了这篇文章,相信你对“python中index代表了什么”有了一定的了解,如果想了解更多相关知识,欢迎关注编程网Python频道,感谢各位的阅读!
--结束END--
本文标题: python中index代表了什么
本文链接: https://lsjlt.com/news/272859.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0