Python读写excel文件

Posted northwest

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python读写excel文件相关的知识,希望对你有一定的参考价值。

import pandas as pd
import xlrd
from xlutils.copy import copy

# 读excel
def readExcel():
    df = pd.read_excel(r\'resource/read-excel.xls\')
    for i in df.values:
     print(i[1])
    print(df.values[0])
    print(df.values[0][1])

readExcel()

# 追加写exxcel
def writeExcel():
    # 打开表格
    wb = xlrd.open_workbook("resource/write-excel.xls")
    # 将xlrd对象copy转化为xlwt对象
    newWb = copy(wb)
    # 获取转换后的第一个sheet
    newSheet = newWb.get_sheet(0)
    # 追加写入数据
    for i in range(0, 10):
        newSheet.write(i + 1, 3, "你好")
        # 保存表格
        newWb.save("resource/write-excel.xls")
writeExcel()

以上是关于Python读写excel文件的主要内容,如果未能解决你的问题,请参考以下文章

python读写Excel方法(xlwt)

MFC怎么读写EXCEL文件

[Python3]读写Excel - openpyxl库

python读写excel文件

Python 中 openpyxl 模块封装,读写 Excel 文件中自动化测试用例数据

第17天---python办公自动化---读写Excel文件