Answers for "count occurrence of items in a list python"

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 "count occurrence of items in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language