demo_ref_any.py:
mylist = [False, True, False] x = any(mylist) print(x)
➜ begtut>python demo_any.py
True