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

python openpyxl笔记

时间:2016-04-07 13:23:15      阅读:382      评论:0      收藏:0      [点我收藏+]

标签:

import warnings

warnings.filterwarnings("ignore") # 如果没有此行代码,则会出现警告提示: UserWarning: Discarded range with reserved name warnings.warn("Discarded range with reserved name")原因是会忽略掉excel中的其他一些设置,对excel中我们正常取值是没有影响的,可以忽略

wb = openpyxl.load_workbook(file_name, read_only=True) #打开文件

wb.get_sheet_names() #获取所有的sheet_name

ws = wb.get_sheet_by_name(sheet_name) #获取sheet对象

title = ws.title #sheet名
rows = ws.get_highest_row() #行数
cols = ws.get_highest_column()#列数

ws.cell(row=1, column=3).value #获取cell的值,如果cell值为空,ws.cell(row=1, column=3)为None

python openpyxl笔记

标签:

原文地址:http://www.cnblogs.com/forwhy/p/5362954.html

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