Practice #1
Lesson 7 of 9 in Coddy's Python Lambda Functions course.
Challenge
EasyWrite a lambda function that receives a list of tuples that each tuple contains two integers. The lambda returns a new list containing only the tuples where the first integer is greater than the second integer.
Assign the lambda function to a variable named first_bigger.
Don't use <strong>def</strong>!
Try it yourself
# Write code here