Домой United States USA — software Map and Filter Function in Python

Map and Filter Function in Python

272
0
ПОДЕЛИТЬСЯ

In this article, learn about some of the most used python function maps in machine learning.
Let’s be friends:
Comment ( 0)
Join the DZone community and get the full member experience.
Machine learning is no doubt the most trending topic right now, and python is the most used versatile language in machine learning.
In this article, I’ll tell you about some of the most used python function maps in machine learning.
The map function is used to manipulate a list and get an iterable object out of it. It does not return a list, it returns an object of type map.
The map function takes in a function as a first parameter and list as a second parameter, and then it will iterate over every item in the list and apply that passed function to it. Then it will add it to the new collection and return that collection in the end.
In the example below, we have a function get_cube, which will take a number and return the cube of it.

Continue reading...