Pyhont:内建函数enumerate

Posted Tom文星

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章

Pyhont 高阶函数

python(29)强大的zip函数

封装解构,集合,字典,内建函数和简单选择排序相关知识及习题

python常用内建函数

Python标准库(3.x): 内建函数扫盲

pyhont备份php代码脚本