Python - Data Types as Values
You have a list of mixed values: [0, '', None, 'Python', [], [1], False, True].
Write a Python expression using list comprehension to create a new list containing only the truthy values.
Write a Python expression using list comprehension to create a new list containing only the truthy values.
