Menu
Coddy logo textTech

Practice #1

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

challenge icon

Challenge

Easy

Write 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

All lessons in Python Lambda Functions