Answers for "find occurence in list"

3

count occurrences of value in array python

>>> l = ["a","b","b"]
>>> l.count("a")
Posted by: Guest on May-04-2020
2

count occurrence in array python

arr = np.array( [1, 2, 3, 2, 1, 2])
occ = np.count_nonzero(arr==0)
print(occ)
0
occ = np.count_nonzero(arr==1)
print(occ)
2
Posted by: Guest on August-17-2020

Code answers related to "find occurence in list"

Python Answers by Framework

Browse Popular Code Answers by Language