Answers for "python what number in list equals specific number"

2

value count a list python

from collections import Counter
z = ['blue', 'red', 'blue', 'yellow', 'blue', 'red']
Counter(z)
>>> Counter({'blue': 3, 'red': 2, 'yellow': 1})
Posted by: Guest on October-26-2021
0

how to check if all values in list are equal python

if len(lst) < 0 :
        res = True
    res = lst.count(lst[0]) == len(lst)
      
    if(res):
        print("Equal")
Posted by: Guest on April-16-2021

Code answers related to "python what number in list equals specific number"

Python Answers by Framework

Browse Popular Code Answers by Language