python-3.x 如何使用pandas从excel工作表中选择要显示的行

uqjltbpv  于 2023-04-13  发布在  Python
关注(0)|答案(1)|浏览(103)

我希望在打印excel工作表中的数据时能够选择要显示的行

data = pd.read_excel("TABLE.xlsx", usecols='D,E,F')

这允许我选择要显示的列,我需要添加什么来选择特定的行?

bxpogfeg

bxpogfeg1#

# Below code only shows rows where the column 'D' values are greater than 5

data = pd.read_excel("TABLE.xlsx", usecols='D,E,F')
selected_rows = data[data['D'] > 5]

This is for selecting from D column.Similarly, use other indexing based on your requirement.

还可以使用其他布尔运算符(〈、〉=、〈=、==、!=等)根据不同的条件选择行,并使用逻辑运算符(&、|,~)。
查看此链接以获得有关布尔索引Logical operators for Boolean indexing in Pandas的更多帮助

相关问题