demo_ref_all.py:
mylist = [True, True, True] x = all(mylist) print(x)
➜ begtut>python demo_all.py
True