python 读取excel数据插入到另外一个excel

Posted BreakCircle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 读取excel数据插入到另外一个excel相关的知识,希望对你有一定的参考价值。

#-*-coding:utf-8-*-
import xlrd
import xlwt


def excel_copy(dir_from, dir_to, sheet_name):
    ‘‘‘从一个excel写入到另外一个excel‘‘‘

    wb = xlrd.open_workbook(dir_from)
    # 选择sheet页
    sheet1 = wb.sheet_by_index(0)
    # 打印每个sheet页的行数
    # print("sheet1行数:%d" % sheet1.nrows)
    # 创建写入文件
    workbook = xlwt.Workbook(encoding="ascii")
    # 创建写入sheet页
    worksheet = workbook.add_sheet(sheet_name)
    # 写入excel
    for i in range(0, sheet1.nrows):
        values_row1 = sheet1.row_values(i)
        print(values_row1)
        for s in range(len(values_row1)):
            worksheet.write(i, s, values_row1[s])
    workbook.save(dir_to)

 

以上是关于python 读取excel数据插入到另外一个excel的主要内容,如果未能解决你的问题,请参考以下文章

python实例:从excel读取股票代码,爬取股票信息写到代码后面的单元格中

python读取excel数据插入sqlite中

python读取excel数据插入sqlite中

python——快速读取excel文件并插入数据库

java读取excel获取数据写入到另外一个excel

python操作拷贝excel到另外一个excel中