Practice #2
Lesson 8 of 9 in Coddy's Python Lambda Functions course.
Challenge
EasyWrite a lambda function that receives a list of tuples, where each tuple contains three integers. The lambda returns a new list containing only the sum of the tuples that the sum of the integers are greater than 20.
Assign the lambda function to a variable named sum_bigger.
Don't use <strong>def</strong>!
Try it yourself
# Write code here