加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
合并3G配置数据.py 525 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小程序\3G配置数据合并'
os.chdir(data_path)
files = os.listdir()
df_content = pd.DataFrame()
for file in files:
df_tmp = pd.read_excel(file , skiprows = 1, encoding = 'utf-8')
df_content = df_content.append(df_tmp)
with pd.ExcelWriter('配置数据汇总2.xlsx') as writer: #输出到excel
df_content.to_excel(writer,'配置数据汇总',index=False)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化