how to check if all values in list are equal python
res = all(ele == lst[0] for ele in lst)
if(res):
print("Equal")
how to check if all values in list are equal python
res = all(ele == lst[0] for ele in lst)
if(res):
print("Equal")
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")
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us