Answers for "count element occurences python"

4

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
2

python count character occurrences

str1.count("a")
Posted by: Guest on November-16-2020

Code answers related to "count element occurences python"

Python Answers by Framework

Browse Popular Code Answers by Language