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