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) # 打印读取的数据
这段代码演示了如何使用Python的pandas库来读取Excel文件。首先,我们定义了一个函数read_excel_file
,它接受一个文件路径作为参数,并使用pd.read_excel
来读取Excel文件。然后,在__name__ == "__main__"
的条件下,我们调用这个函数并传入文件路径,打印出读取的数据。这是处理Excel文件操作的一个基本例子。
评论已关闭