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

【Python】读取excel数据

时间:2018-04-22 13:00:53      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:class   sheet   print   读取   test   color   读取excel   int   pre   

‘‘‘python3读取excle数据‘‘‘
import xlrd
workbook = xlrd.open_workbook(rtest.xls, encoding_override=gbk)
print(workbook.sheet_names())

sheet = workbook.sheet_by_name(Sheet 1)
print(sheet.nrows, sheet.ncols)

for i in range(sheet.nrows):
    for j in range(sheet.ncols):
        print(sheet.cell(i, j).value, end= )
    print(\n)

 

【Python】读取excel数据

标签:class   sheet   print   读取   test   color   读取excel   int   pre   

原文地址:https://www.cnblogs.com/tiandsp/p/8905835.html

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