Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Recap
Iterating over a list
Modifying lists
Working with multiple lists
Congratulations
17. Question 1

Instruction

Here's the first question!

Exercise

Write a function named get_long_words(input_list, min_len). The function accepts a list of strings and returns a new list containing only words at least as long as the minimum length provided as the second argument (min_len).

You can use the sample_words list in the template to test your function.