使用 Python 保留 Excel 表头和第一行数据的两种方法-方法二:使用 pandas 库

步骤:
1、导入必要的库:从 pandas 中导入 read_excel 和 to_excel 函数。
2、定义函数 keep_first_two_rows,接受文件路径和工作表名作为参数。
3、使用 read_excel 读取 Excel 文件,并选择指定的工作表。
4、使用 head 方法保留表头和第一行数据。
5、将结果写回原始 Excel 文件。

import pandas as pd

def keep_first_two_rows(filepath, sheetname):
    # 读取 Excel 文件
    df = pd.read_excel(filepath, sheet_name=sheetname)

    # 保留表头和第一行数据
    df = df.head(2)

    # 将结果写回 Excel 文件
    df.to_excel(filepath, sheet_name=sheetname, index=False)


# 指定 Excel 文件路径和工作表名
excel_file_path = "C:\\Users\\Administrator\\Desktop\\销售系数数据同步.xlsx"
sheet_name = "商品费用"

# 调用函数保留表头和第一行数据
keep_first_two_rows(excel_file_path, sheet_name)

上一篇:Selenium一本通


下一篇:南京邮电大学数学实验A 作业4 符号计算 答案 | 《MATLAB数学实验》第三版 第七章 课后习题答案-3(课本习题4)