Python List count ()

Die Methode count () gibt zurück, wie oft das angegebene Element in der Liste angezeigt wird.

Die Syntax der count()Methode lautet:

 list.count (Element)

count () Parameter

Die count()Methode akzeptiert ein einziges Argument:

  • Element - das zu zählende Element

Rückgabewert von count ()

Die count()Methode gibt zurück, wie oft das Element in der Liste angezeigt wird.

Beispiel 1: Verwendung von count ()

 # vowels list vowels = ('a', 'e', 'i', 'o', 'i', 'u') # count element 'i' count = vowels.count('i') # print count print('The count of i is:', count) # count element 'p' count = vowels.count('p') # print count print('The count of p is:', count) 

Ausgabe

 Die Anzahl von i ist: 2 Die Anzahl von p ist: 0

Beispiel 2: Tupel- und Listenelemente in der Liste zählen

 # random list random = ('a', ('a', 'b'), ('a', 'b'), (3, 4)) # count element ('a', 'b') count = random.count(('a', 'b')) # print count print("The count of ('a', 'b') is:", count) # count element (3, 4) count = random.count((3, 4)) # print count print("The count of (3, 4) is:", count)  

Ausgabe

 Die Anzahl von ('a', 'b') ist: 2 Die Anzahl von (3, 4) ist: 1

Interessante Beiträge...