Answers for "find all occurrences of an element in a list python"

4

get all indices of a value in list python

indices = [i for i, x in enumerate(my_list) if x == "whatever"]
Posted by: Guest on March-11-2020
9

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)
Posted by: Guest on May-30-2020
1

python count occurrences of an item in a list

>>> [1, 2, 3, 4, 1, 4, 1].count(1)
3
Posted by: Guest on September-02-2020
-1

python index for all matches

indices = list(filter(lambda x: x == 'whatever', my_list))
Posted by: Guest on June-12-2020
0

find all occurrences of an element in a list python

indices = [index for index, element in enumerate(a_list) if element == 1]
Posted by: Guest on September-11-2021

Code answers related to "find all occurrences of an element in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language