How to check if any elements in a list is True with Python

3 Answers

0 votes
lst = [True, False, None]

if any(lst):
    print("Any element are True")


'''
run:

Any element are True

'''

 



answered Oct 28, 2018 by avibootz
0 votes
lst = [0, 0, 1]

if any(lst):
    print("Any element are True")


'''
run:

Any element are True

'''

 



answered Oct 28, 2018 by avibootz
0 votes
lst = [0, 0, False]

if not any(lst):
    print("No elements are True")


'''
run:

No elements are True

'''

 



answered Oct 28, 2018 by avibootz

Related questions

...