count how many times an element appears in an array python code example
Example 1: python find number of occurrences in list
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)
Example 2: count how many times a value appears in array python
>>> [1, 2, 3, 4, 1, 4, 1].count(1)
3
Example 3: count the number of times a value appears in python
vowels = ['a', 'e', 'i', 'o', 'i', 'u']
count = vowels.count('i')
print('The count of i is:', count)
count = vowels.count('p')
print('The count of p is:', count)