python 中的index()
函数有助于返回元组中给定元素的索引。我们还可以通过元组提供搜索的起点和终点。
10年积累的网站设计制作、成都网站设计经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先网站制作后付款的网站建设流程,更有花垣免费网站建设让你可以放心的选择与我们合作。
**tuple.index(element, start, end)** #where the element may be string, number, list, etc
index()
方法采用三个参数。此方法的输出应该是指示元素位置的整数值。
参数 | 描述 | 必需/可选 |
---|---|---|
元素 | 要搜索的元素 | 需要 |
开始 | 从此索引开始搜索 | 可选择的 |
目标 | 搜索元素直到这个索引 | 可选择的 |
如果该方法找到给定元素的多个匹配项,它将只返回第一个匹配项的索引。
| 投入 | 返回值 | | 元素 | 元素索引 | | 如果没有元素 | ValueError exception(值错误异常) |
index()
方法的示例 # alphabet tuple
alphabet = ('a', 'b', 'c', 'e', 'd', 'e', 'f')
# index of 'c' in alphabet
indexpos = alphabet.index('c')
print('The index of c:', indexpos)
# element 'e' is searched
# index of the first 'e' is returned
indexpos = alphabet.index('e')
print('The index of e:', indexpos)
输出:
The index of c: 2
The index of e: 3
# alphabet tuple
alphabet = ('a', 'b', 'c', 'd', 'e', 'f')
# index of 'g' in alphabet
indexpos = alphabet.index('g')
print('The index of g:', indexpos)
输出:
ValueError: alphabet.index('g'): g not in tuple
网站题目:创新互联Python教程:Pythonindex()
链接分享:http://www.36103.cn/qtweb/news28/18828.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联