Answers for "python count x time number and add inside array"

3

how to find the number of times a number appears in python

dict((i, a.count(i)) for i in a)
Posted by: Guest on February-24-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 "python count x time number and add inside array"

Python Answers by Framework

Browse Popular Code Answers by Language