python excel
[转]Python xlrd、xlwt、xlutils读取、修改Excel文件
一、xlrd读取excel
首先,打开workbook;
import xlrd
wb = xlrd.open_workbook(‘myworkbook.xls‘)
检查表单名字:
wb.sheet_names()
得到第一张表单,两种方式:索引和名字
sh = wb.sheet_by_index(0)
sh = wb.sheet_by_name(u‘Sheet1‘)
递归打印出每行的信息:
for rownum in range(sh.nrows):
print sh.row_values(rownum)
如果只想返回第一列数据:
first_column = sh.col_values(0)
通过索引读取数据:
cell_A1 = sh.cell(0,0).value
cell_C4 = sh.cell(rowx=3,colx=2).value
注意:这里的索引都是从0开始的。
二、xlwt写excel
在写入Excel表格之前,你必须初始化workbook对象,然后添加一个workbook对象。比如:
import xlwt
wbk = xlwt.Workbook()
sheet = wbk.add_sheet(‘sheet 1‘)
这样表单就被创建了,写入数据也很简单:
# indexing is zero based, row then column
sheet.write(0,1,‘test text‘)
之后,就可以保存文件(这里不需要想打开文件一样需要close文件):
wbk.save(‘test.xls‘)
深入探索
worksheet对象,当你更改表单内容的时候,会有警告提示。
sheet.write(0,0,‘test‘)
sheet.write(0,0,‘oops‘)
# returns error:
# Exception: Attempt to overwrite cell:
# sheetname=u‘sheet 1‘ rowx=0 colx=0
解决方式:使用cell_overwrite_ok=True来创建worksheet:
sheet2 = wbk.add_sheet(‘sheet 2‘, cell_overwrite_ok=True)
sheet2.write(0,0,‘some text‘)
sheet2.write(0,0,‘this should overwrite‘)
这样你就可以更改表单2的内容了。
更多
# Initialize a style
style = xlwt.XFStyle()
# Create a font to use with the style
font = xlwt.Font()
font.name = ‘Times New Roman‘
font.bold = True
# Set the style‘s font to this new one you set up
style.font = font
# Use the style when writing
sheet.write(0, 0, ‘some bold Times text‘, style)
xlwt 允许你每个格子或者整行地设置格式。还可以允许你添加链接以及公式。其实你可以阅读源代码,那里有很多例子:
dates.py, 展示如何设置不同的数据格式
hyperlinks.py, 展示如何创建超链接 (hint: you need to use a formula)
merged.py, 展示如何合并格子
row_styles.py, 展示如何应用Style到整行格子中.
三 xlutils修改excel
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。