Menu
Coddy logo textTech

Practice #2

Lesson 8 of 9 in Coddy's Python Lambda Functions course.

challenge icon

Challenge

Easy

Write 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

All lessons in Python Lambda Functions