how to check list of list if they are all false in python code example
Example: check all elements in list are false python
>>> data = [False, False, False]
>>> not any(data)
True
>>> data = [False, False, False]
>>> not any(data)
True