加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
合并4G配置数据.py 619 Bytes
一键复制 编辑 原始数据 按行查看 历史
fengmingshan 提交于 2021-12-15 20:46 . 找回资料提交
# -*- coding: utf-8 -*-
"""
Created on Tue Jul 17 12:50:42 2018
@author: Administrator
"""
import pandas as pd
import os
data_path = r'D:\_python小程序\合并表格'
os.chdir(data_path)
files = os.listdir()
df_content = pd.DataFrame()
for file in files:
df_tmp = pd.read_excel('./'+ file , encoding = 'utf-8', sheet_name = 'ECellEquipmentFunctionNB' )
df_tmp.drop([0,1,2],axis = 0,inplace =True)
df_content = df_content.append(df_tmp)
with pd.ExcelWriter('配置数据汇总.xlsx') as writer: #输出到excel
df_content.to_excel(writer,'配置数据汇总',index=False)
help(pd.read_excel)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化