Posted in Python onMay 16, 2020
将一个列表数据写入output.xlsx的a,b,c……等sheet中
import pandas as pd df1 = pd.DataFrame({'a':[3,1],'b':[4,3]}) df2 = df1.copy() with pd.ExcelWriter('F:\\python入门\\数据2\\output.xlsx') as writer: str1 = ['a','b','c','d','e','f','g','h','i',\ 'j','k','l','m','n','o','p','q'] for i in str1: name = str(i) df1.to_excel(writer, sheet_name= name) writer.save() writer.close()
结果
此时每个sheet的内容都是一样的。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。
Python使用Excel将数据写入多个sheet
- Author -
夏日的向日葵声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@