demo_ref_all.py:
mylist = [True, True, True] x = all(mylist) print(x)
C:\Users\My Name>python demo_all.py
True