Run
x = [True, False, False, True] output = any(x) print(f'x : {x}') print(f'any(x) : {output}')
Output