网络编程
位置:首页>> 网络编程>> Python编程>> pandas每次多Sheet写入文件的方法

pandas每次多Sheet写入文件的方法

作者:jiangjiane  发布时间:2022-02-07 03:50:39 

标签:pandas,Sheet

pandas每次多Sheet写入文件,只能一次性存入,不然每次会重写文件,最后只保留最后一次的写入。


# !usr/bin env python
# -*- coding: utf-8 -*-

import pandas as pd

price_path = 'ASHAREEODPRICE.csv'
df_price = pd.read_csv(price_path)

for i in xrange(4):
 sh = 'Sheet{}'.format(i+1)
 file_path = 'qimo_close_price.xlsx'
 raw_df = pd.read_excel(file_path, sheet_name=i)

out_path = 'qimo_close_price_out.xlsx'
 raw = pd.merge(raw_df, df_price, how='left')
 raw.to_excel(out_path, sheet_name=sh, index=False)

来源:https://blog.csdn.net/jiangjiang_jian/article/details/80909730

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com