学习Python的过程中,我们会遇到Excel的读写问题。这时,我们可以使用xlwt模块将数据写入Excel表格中,使用xlrd模块从Excel中读取数据。下面我们介绍如何实现使用Python对Excel进行读写操作。
Python版:3.5.2
通过pip安装xlwt,xlrd这两个模块,如果没有安装的话:
pip install xlwt
pip install xlrd
一、对Excel文件进行写入操作:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*- conding:utf-8 -*-
__author__ = 'mayi'
#How to write to an Excel using xlwt module
import xlwt
#创建一个Wordbook对象,相当于创建了一个Excel文件
book = xlwt.Workbook(encoding = "utf-8" , style_compression = 0 )
#创建一个sheet对象,一个sheet对象对应Excel文件中的一张表格
sheet = book.add_sheet( "sheet1" , cell_overwrite_ok = True )
#向表sheet1中添加数据
sheet.write( 0 , 0 , "EnglishName" ) #其中,"0, 0"指定表中的单元格,"EnglishName"是向该单元格中写入的内容
sheet.write( 1 , 0 , "MaYi" )
sheet.write( 0 , 1 , "中文名字" )
sheet.write( 1 , 1 , "蚂蚁" )
#最后,将以上操作保存到指定的Excel文件中
book.save( "name.xls" )
|
二、对Excel文件进行读取操作:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# -*- conding:utf-8 -*-
__author__ = 'mayi'
# How to read from an Excel using xlrd module
import xlrd
# 打开指定路径中的xls文件,得到book对象
xls_file = "name.xls"
#打开指定文件
book = xlrd.open_workbook(xls_file)
# 通过sheet索引获得sheet对象
sheet1 = book.sheet_by_index( 0 )
# # 获得指定索引的sheet名
# sheet1_name = book.sheet_names()[0]
# print(sheet1_name)
# # 通过sheet名字获得sheet对象
# sheet1 = book.sheet_by_name(sheet1_name)
# 获得行数和列数
# 总行数
nrows = sheet1.nrows
#总列数
ncols = sheet1.ncols
# 遍历打印表中的内容
for i in range (nrows):
for j in range (ncols):
cell_value = sheet1.cell_value(i, j)
print (cell_value, end = "\t" )
print ("")
|
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持服务器之家!
原文链接:http://www.cnblogs.com/mayi0312/p/6646211.html