📌  相关文章
📜  计算熊猫数据框python代码示例中包含特定值的单元格的数量

📅  最后修改于: 2022-03-11 14:47:10.136000             🧑  作者: Mango

代码示例2
print df
  col1 education
0    a       9th
1    b       9th
2    c       8th

print df.education == '9th'
0     True
1     True
2    False
Name: education, dtype: bool

print df[df.education == '9th']
  col1 education
0    a       9th
1    b       9th

print df[df.education == '9th'].shape[0]
2
print len(df[df['education'] == '9th'])
2