“Python -Wertezahl in Array” 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

Ähnliche Antworten wie “Python -Wertezahl in Array”

Fragen ähnlich wie “Python -Wertezahl in Array”

Weitere verwandte Antworten zu “Python -Wertezahl in Array” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen