首页 > 代码库 > Pyhont:内建函数enumerate
Pyhont:内建函数enumerate
1、enumerate的中文意思
2、enumerate参数为可遍历的变量,如字符串、列表等,其返回值为enumerate类。
3、enumerate多用在for循环中得到计数 。
[注]:若在for循环中同时需要index和value值,则此时可以考虑enumerate
4、enumerate的使用效果
1 list=[‘Tom‘,‘Jack‘,‘Dick‘,‘Ellen‘,‘Tommas‘] 2 for item in enumerate(list): 3 print(item)
5、enumerate的使用技巧
a、如果在一个列表中,在遍历列表的同时需要列表的索引,可以这样写:
1 list=[‘Tom‘,‘Jack‘,‘Dick‘,‘Ellen‘,‘Tommas‘] 2 for item,value in enumerate(list): 3 print(item,value)
b、enumerate可以索引的开始值
1 list=[‘Tom‘,‘Jack‘,‘Dick‘,‘Ellen‘,‘Tommas‘] 2 for item,value in enumerate(list,1):#指定索引值从1开始 3 print(item,value)
c、读取文件行数
1 count=0 2 for index,value in enumerate(open(filename,‘r‘)): 3 count++ 4 5 print(count) #文件的行数
参考:Python脚本之家
Pyhont:内建函数enumerate
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。