Answers for "compter des valeurs python"

1

nb_occurence in list python

>>> import random
>>> l = [random.randint(0,5) for i in range(10)]
>>> l
[1, 3, 0, 0, 5, 1, 0, 0, 0, 4]
>>> l.count(1)
2
>>> l.count(0)
5
>>> l.count(6)
0
Posted by: Guest on May-20-2020

Python Answers by Framework

Browse Popular Code Answers by Language