码迷,mamicode.com
首页 > 编程语言 > 详细

python中的enumerate()函数用法

时间:2016-04-28 00:14:51      阅读:1680      评论:0      收藏:0      [点我收藏+]

标签:

enumerate函数用于遍历序列中的元素以及它们的下标,可以非常方便的遍历元素。

比如我在往excel中写数据时就用到了这个函数:

data = []
    data.append((预约码, 车牌号码, 进校时间段, 出校时间段, 进校校区,))
    for i in car_orders:
        data.append((i.order_number, i.car_number, i.during_in_time, i.during_out_time, i.in_school))

    for i, row in enumerate(data):
        for j, col in enumerate(row):
            booksheet.write(i, j, col)

 

python中的enumerate()函数用法

标签:

原文地址:http://www.cnblogs.com/zywscq/p/5440808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!