Answers for "how to count the number of n's in an array python"

0

count how much a number is in an array python

# Our array
arr = [82, 49, 82, 82, 41, 82, 15, 63, 38, 25]

# let's print the number of 82 in our array/list
print(arr.count(82))

# it will print : 4
Posted by: Guest on September-04-2021

Code answers related to "how to count the number of n's in an array python"

Python Answers by Framework

Browse Popular Code Answers by Language