用python自动复制excel的sheet表数据到新表
2021-02-02 13:14
标签:lan pre pen top des writer python write active 例如: 2.xlsx 表里的第二列 的数据复制粘贴到 test.xlsx的第一列 用python自动复制excel的sheet表数据到新表 标签:lan pre pen top des writer python write active 原文地址:https://www.cnblogs.com/sniepr/p/12809804.html
步骤如下:from openpyxl import Workbook
from openpyxl import load_workbook
from openpyxl.writer.excel import ExcelWriter
wb = load_workbook (‘C:\\Users\\elan\\Desktop\\python\\2.xlsx‘)
ws = wb[‘Sheet1‘]
sheet = wb.active
a = sheet.max_row
b=[]
i=0
while i
文章标题:用python自动复制excel的sheet表数据到新表
文章链接:http://soscw.com/index.php/essay/49973.html