Only include products that are non-discontinued (discontinued=0) with unit_price greater than 15.0 in the new list.
How I can solve this? How can I select and use discontinued=0 with unit_price and put it into the code?
print (list(filter(lambda x: x=0,>15,products)))