“Python wie man Gegenstände in Array zählt” Code-Antworten

Zählen Sie Werte in Array Python

a = numpy.array([0, 3, 0, 1, 0, 1, 2, 1, 0, 0, 0, 0, 1, 3, 4])
unique, counts = numpy.unique(a, return_counts=True)
dict(zip(unique, counts))

# {0: 7, 1: 4, 2: 1, 3: 2, 4: 1}
Vast Vulture

Python wie man Gegenstände in Array zählt

myArray = [1, 2, 3];
print(len(myArray));
#output
3
MrStonkus

Python -Wertezahl in Array

import numpy as np
y = np.array([0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1])
num_zeros = (y == 0).sum()
num_ones = (y == 1).sum()
Concerned Caterpillar

Zählen Sie, wie viel eine Zahl in einem Array -Python ist

# 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
Long Loris

Ähnliche Antworten wie “Python wie man Gegenstände in Array zählt”

Fragen ähnlich wie “Python wie man Gegenstände in Array zählt”

Weitere verwandte Antworten zu “Python wie man Gegenstände in Array zählt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen