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

Python源码---Excell读

时间:2020-02-07 12:53:18      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:ble   book   ror   print   pen   pip   aliyun   open   sheet   

Excell 文件---选项---公式---R1C1样式

CMD安装 xlrd

 

pip install xlrd -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

源码————

import xlrd
xlsx = xlrd.open_workbook(‘D:\地址表.xlsx‘)
table = xlsx.sheet_by_index(0)
#table = xlsx.sheet_by_name("地址表")
print(table.cell_value(1,2))
print(table.cell(1,2).value)
print(table.row(1)[2].value)

Python源码---Excell读

标签:ble   book   ror   print   pen   pip   aliyun   open   sheet   

原文地址:https://www.cnblogs.com/guowei2020/p/12272524.html

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