python和excel的适用范围
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python和excel的适用范围相关的知识,希望对你有一定的参考价值。
参考技术A Python语言可以用来作为批处理语言,写一些简单工具,处理些数据,作为其他软件的接口调试等。Python语言可以用来作为函数语言,进行人 工智能 程序的开发,具有Lisp语言的大部分功能。Python语言可以用来作为过程语言,进行我们常见的应用程序开发,可以和VB等语言一样应用。 Python语言可以用来作为面向对象语言,具有大部分面向对象语言的特征,常作为大型应用软件的原型开发,再用C++改写,有些直接用Python来开 发。excel广泛应用于统计分析、财务管理分析、股票分析和经济、行政管理等各个方面;Excel是Microsoft为使用Windows和Apple Macintosh操作系统的电脑编写的一款电子表格软件。
如何使用python合并多个excel文件
适用场景
当你有多个列名一致的excel文件的时候,你想要把多个excel文件合并成一个excel文件
Python代码实现
- 首先导入需要的库
import pandas as pd
import os
- 将所有需要合并的excel放进一个单独的文件夹里
- 定义一个函数
def append(path): #path:所有需要合并的excel文件所在的文件夹
filename_excel = [] # 建立一个空list,用于储存所有需要合并的excel名称
frames = [] # 建立一个空list,用于储存dataframe
for root, dirs, files in os.walk(path):
for file in files:
file_with_path = os.path.join(root, file)
filename_excel.append(file_with_path)
df = pd.read_excel(file_with_path, engine='openpyxl')
frames.append(df)
df = pd.concat(frames, axis=0)
return df
一些说明
- 上面的代码中root是就是当前文件夹的所有路径
- files是一个list, 包含文件夹中所有excel的名称
- os.path.join(root, file)就是合并文件夹的路径和文件名称,这样后面的pd.read_excel()就能读取excel文件
tips
也可以不定义函数直接用:
filename_excel = []
frames = []
for root, dirs, files in os.walk(path):
for file in files:
file_with_path = os.path.join(root, file)
filename_excel.append(file_with_path)
df = pd.read_excel(file_with_path, engine='openpyxl')
frames.append(df)
df = pd.concat(frames, axis=0)
df.to_excel("合并的excel.xlsx")
特殊情况
如果excel的文件名包括日期,且需要写到最后汇总的excel中
def append(path):
filename_excel = []
frames = []
for root, dirs, files in os.walk(path):
for file in files:
file_with_path = os.path.join(root, file)
filename_excel.append(file_with_path)
df = pd.read_excel(file_with_path, engine='openpyxl')
# 将文件名中包含的日期信息写入dataframe
df["日期"] = pd.to_datetime(file.strip('.xls')[-1:])#日期在什么位置需要自己调整
frames.append(df)
df = pd.concat(frames, axis=0)
return df
如果将多个excel合并到一个excel中,sheet命名为excel的名字
def combine(path):
with pd.ExcelWriter("合并的excel.xlsx") as writer:
for root, dirs, files in os.walk(path):
for file in files:
filename = os.path.join(root, file)
df = pd.read_excel(filename, engine='openpyxl')
df.to_excel(writer, sheet_name=file.strip('.xls')) #删除文件名的后缀,有时候是.csv/.xlsx
return df
以上是关于python和excel的适用范围的主要内容,如果未能解决你的问题,请参考以下文章