📌  相关文章
📜  python 查找列表中出现的次数 - Python 代码示例

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

代码示例3
student_grades = [9.1, 8.8, 10.0, 7.7, 6.8, 8.0, 10.0, 8.1, 10.0, 9.9]

samebnumber = student_grades.count(10.0)

print(samebnumber)