Python —— excel文件操作(超详细)_python读取excel文件
import pandas as pd
# 读取Excel文件
def read_excel_file(file_path):
# 使用pandas的read_excel函数读取文件
df = pd.read_excel(file_path)
return df
# 示例使用
if __name__ == "__main__":
file_path = 'example.xlsx' # Excel文件路径
df = read_excel_file(file_path)
print(df) # 打印读取的数据
确保在运行代码之前已经安装了pandas
库和openpyxl
库(用于读取.xlsx
格式的文件)。如果没有安装,可以通过以下命令安装:
pip install pandas openpyxl
评论已关闭