gpt4 book ai didi

Python按列名只读特定列的excel表

转载 作者:行者123 更新时间:2023-12-04 20:24:08 25 4
gpt4 key购买 nike

我有一个包含很多列的 Excel 工作表。

Col1 Col2 Col3
1 2 A
2 2 B
3 2 B

我正在使用 pandas read_excel 并使用“usecols”按索引读取列。只是想知道是否有任何方法可以通过名称读取这些列?比如这个例子中的 Col2 和 Col3?

import pandas as pd
df = pd.read_excel(file_path, sheet_name=sheet_name, usecols="A,C")

最佳答案

如果你想要 Col2Col3 你可以使用下面的代码:

import pandas as pd

df = pd.read_excel(file_path, sheet_name=sheet_name, usecols = ['Col2','Col3'])

或者你可以使用这个:

import pandas as pd

df = pd.read_excel(file_path, sheet_name=sheet_name)[['Col2', 'Col3']]

关于Python按列名只读特定列的excel表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64547708/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com