摘要: 1 import xlrd 2 #打开文件 3 book = xlrd.open_workbook ('Status.xlsx') 4 #获取数据表 5 table1 = book.sheets()[0] 6 table2 = book.sheets()[1] 7 #读取行数据和列数据 8 col_0 = table1.col_values(0) 9 row_0 = table... 阅读全文
posted @ 2018-04-03 05:07 Matrix_R 阅读(282) 评论(0) 推荐(0) 编辑