首页 > 编程 > Python > 正文

Python读写Excel文件方法介绍

2020-02-23 06:14:24
字体:
来源:转载
供稿:网友

一、读取excel

这里介绍一个不错的包xlrs,可以工作在任何平台。这也就意味着你可以在Linux下读取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)
[code]
通过索引读取数据:
[code]
cell_A1 =  sh.cell(0,0).value
cell_C4 = sh.cell(rowx=3,colx=2).value

注意:这里的索引都是从0开始的。

二、写excel

这里介绍一个不错的包xlwt,可以工作在任何平台。这也就意味着你可以在Linux下保存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)

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表