In this course, you’ve learned how map()
works and how to use it to process iterables. You also learned about some Pythonic tools that you can use to replace map()
in your code.
You now know how to:
- Work with Python’s
map()
- Use
map()
to process and transform iterables without using an explicit loop - Combine
map()
with functions likefilter()
andreduce()
to perform complex transformations - Replace
map()
with tools like list comprehensions and generator expressions
Maram-dev on May 6, 2021
Thank you for a great course!