Python - Data Types as Values
What will be the output of the following code?
values = [0, 1, '', 'hello', [], [1]] result = [bool(v) for v in values] print(result)
