码迷,mamicode.com
首页 > 其他好文 > 详细

xlrd中class ExcelReader:

时间:2018-08-01 17:18:10      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:read   读取excel   als   通过   输出   lis   指定   lin   读取   

 class ExcelReader:
    ‘‘‘
    读取excel文件中内容,返回list。
    如:
    excel中内容为
    | A | B | C |
    | A1| B1| C1|
    | A2| B2| C2|
    如果 print(ExcelReader(excel,title_line = True).data),那么输出结果为
    [{A:A1,B:B1,C:C1},{A:A2,B:B2,C:C2}]
    如果 print(ExcelReader(excel,title_line = False).data),那么,输出结果为
    [{A,B,C},{A1,B1,C1},{A2,B2,C2}]

    可以指定sheet,通过index或者name:
    ExcelReader(excel,sheet = 2)
    ExcelReader(excel,name = ‘BaiduTest‘)
    ‘‘‘

xlrd中class ExcelReader:

标签:read   读取excel   als   通过   输出   lis   指定   lin   读取   

原文地址:https://www.cnblogs.com/ymany/p/9402280.html

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