python读取xlsx python读取excel数据
Posted _刘文凯_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读取xlsx python读取excel数据相关的知识,希望对你有一定的参考价值。
如题 python pandas读取excel数据 如何读取特定sheet的excel数据
1、安装pandas
已经有的可以不用再安装
>pip install pandas
2、读取数据
首先将excel数据和代码放在一个文件夹下
import pandas as pd
data = pd.read_excel('data.xlsx') # 默认读取第一个sheet
print(data.head()) # 预览数据
3、其它形式
data_super = pd.read_excel('data.xlsx', sheet_name='sheet1') # 读取特定的sheet
data = pd.read_excel('data.xlsx', header=None) # 没有表头
以上是关于python读取xlsx python读取excel数据的主要内容,如果未能解决你的问题,请参考以下文章
在 python 中打开和读取一个 excel .xlsx 文件