python操作excel表格

1.python读取excel表格所用到的模块是xlrd

import xlrd


data=xlrd.open_workbook('a.xlsx')     #获取一个表格对象,表格格式为xlsx或者xls

table=data.sheets()[0]   #通过索引获取sheet工作表

table=data.sheet_by_index(0)   #通过索引获取sheet工作表

print(table.nrows)    #获取工作表的行数

print(table.ncols)     #获取工作表的列数

print(table.row_values(i))     #获取整行的数,返回一个列表

print(table.col_values(i))     #获取整列的数,返回一个列表


2.python写excel表格所用到的模块是xlwt

import xlwt

data=xlwt.Workbook(encoding='ascii')    #创建一个workbook

worksheet=data.add_sheet('Sheet1')        #添加一个Sheet工作表

worksheet.write(0,0,'row1col1')             #向表格中写入数据

data.save('a.xls')           #保存workbook,格式为xls


3.python修改已经存在的excel表格,用到的模块是xlutils

from xlrd import open_wookbook

from xlutils.copy import copy

import xlwt


old=xlrd.open_wookbook("old.xls")   #打开已经存在的excel表格

r_sheet=old.sheet_by_index(0)        #获取excel表格的sheet

wt=copy(old)       #复制打开的excel表格

w_sheet=wt.get_sheet(0)       #获取复制的sheet

w_sheet.write(0,0,"modify sheet"))    #写入要插入的数据

wt.save("new.xls")     #保存为新的xls表格

wt.save("old.xls")         #保存为旧的表格







你可能感兴趣的:(python)