我有以下代码:
<head>
<meta charset="UTF-8">
<title>
<%= title %>|Minsk Events</title>
<link rel="stylesheet" href="css/style.css">
</head>
打印:
raw_data = [[1, 2, 3], [4, 5, 6]]
df = pd.DataFrame(data=raw_data,
columns=["cA", "cB", "cC"])
wrong_indexes = df.loc[df['cA'] > 2 ]
print(wrong_indexes)
而不是这个,我想只得到这个条件所在的索引列表,如下所示:
cA cB cC
1 4 5 6
知道我该怎么做吗?
答案 0 :(得分:2)
wrong_indexes = df.loc[df['cA'] > 2 ].index.tolist()