pandas 读取excel的指定列

Posted chen狗蛋儿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas 读取excel的指定列相关的知识,希望对你有一定的参考价值。

不管对于read_csv还是read_excel,现在都有:

usecols : int or list, default None

  • If None then parse all columns,
  • If int then indicates last column to be parsed
  • If list of ints then indicates list of column numbers to be parsed
  • If string then indicates comma separated list of Excel column letters and column ranges (e.g. “A:E” or “A,C,E:F”). Ranges are inclusive of both sides.

而之前版本的:

parse_cols : int or list, default None

Deprecated since version 0.21.0: Pass in usecols instead.

可以看到在0.21.0版本后就已经完全被上面的那个给替代了。

这也算解决了我一个头疼的问题,总是把两个read的内容记混了。

所以对于最新版的pandas,只需要:

df = pd.read_excel("data.xlsx", usecols=[0, 5]) # 指定读取第1列和第6列
# 当然也可以用"A,F"代替[0,5]

 

以上是关于pandas 读取excel的指定列的主要内容,如果未能解决你的问题,请参考以下文章

pandas 读取excel的指定列

pandas从excel读取数据数字类型过长出现科学计数法的问题

求助!pandas怎么实现vlookup功能,数据放在指定列里

pandas 如何对比判断数据是不是在excel表格中?

Python中的pandas如何读取excel中指定单元格的值?

pandas读取和写入excel,csv太慢怎么办