当前位置 : 主页 > 编程语言 > python >

#yyds干货盘点#List函数index - python基础学习系列(66)

来源:互联网 收集:自由互联 发布时间:2022-06-15
以Python 3.x版本为主 index:值在List中的位置 1、函数 编号 函数名 说明 1 index 从列表中找出某个值第一个匹配项的索引位置 ​代码如下​ #!/usr/bin/python3 # -*- coding: utf-8 -*- # Apr 14, 2022 22

以Python 3.x版本为主

index:值在List中的位置

1、函数

编号

函数名

说明

1

index

从列表中找出某个值第一个匹配项的索引位置


  • ​代码如下​
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Apr 14, 2022 22:50 AM

import sys

list=['51','CTO','hello','world']
# 1、值在List中的位置 - index
target_str='51'
index=list.index(target_str)
print('')
print('%s值在List列表%s中的位置(下标):%s' % (target_str,list,index))

# 2、值在List中的位置 - index
target_str='CTO'
index=list.index(target_str)
print('')
print('%s值在List列表%s中的位置(下标):%s' % (target_str,list,index))


  • ​效果如下​

#yyds干货盘点#List函数index - python基础学习系列(66)_python


2、值不存在则报错

如果值不存在,那么会报错


  • 报错如下

#yyds干货盘点#List函数index - python基础学习系列(66)_python_02


  • 代码如下
# 2、值在List中的位置 - index
target_str='51CTO'
index=list.index(target_str)
print('')
print('%s值在List列表%s中的位置(下标):%s' % (target_str,list,index))
上一篇:django 项目
下一篇:没有了
网友评论