Question from the Python - Fundamentals test

Which function `f(function, iterable)` returns an iterator that applies `function` to every item of `iterable` ?

Easy

Which function f(function, iterable) returns an iterator that applies function to every item of iterable ?

Author: ThéoStatus: PublishedQuestion passed 397 times
Edit
0
Community Evaluations
developer avatar
El Mehdi
31/10/2024
Il me semble que la réponse filter est aussi valable, car on peut utiliser celle-ci avec la fonction lambda.