pandas安装
建议安装anaconda或者使用pipinstallpandas直接安装pandas。
实例介绍
大家以如图所示sheet为例,实现所有sheet数据合并、去重,再写入新的execl文件中。
pythonpandas实现
读取sheet名称,使用pandas的ExcelFile()方法通过sheet_names属性来查看当前表格中包含的所有sheet名称。
合并sheet数据,遍历各sheet页,使用concat函数合并所有sheet数据。
数据去重,使用drop_duplicates()函数去重。
写入合并结果,使用to_execl()写入合并结果。
合并结果如图
希望以上分享对你有所帮助,欢迎大家评论、留言。