pandas读取excel文件,显示数据
时间: 2024-02-17 18:47:31 浏览: 110
python pandas 读取excel数据
你好,关于pandas读取excel文件,可以使用read_excel()函数来实现数据读取,示例代码如下:
import pandas as pd
data=pd.read_excel('文件路径')
print(data.head())
其中data.head()函数可以用来展示前五行数据。希望对你有帮助。
阅读全文
python pandas 读取excel数据