首页 > 代码库 > python-enumerate-b1
python-enumerate-b1
#代码是在3.5的解释器下运行的
a = ["my","name","is","xxx"]
#以(index,value)的形式一行一行打印
for index in range(len(a)): #遍历索引下标
print(index,a[index]) #同时输出索引,以及变量的值
#输出结果:
#0 my
#1 name
#2 is
#3 xxx
#enumerate的用法起相同的作用
for index,value in enumerate(a):
print(index,value)
#输出结果:
#0 my
#1 name
#2 is
#3 xxx
#在列表中输出
def read_index_value(index,value):
return "[%s,%s]" % (index,value) #返回一组索引以及对应的值
print ([read_index_value(index,value) for index,value in enumerate(a)])
#输出结果:[‘[0,my]‘, ‘[1,name]‘, ‘[2,is]‘, ‘[3,xxx]‘]
#以列表的形式输出
list_a = list(enumerate(a))
print(list_a)
#输出结果:[(0, ‘my‘), (1, ‘name‘), (2, ‘is‘), (3, ‘xxx‘)]
python-enumerate-b1
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。