map in python3 code example

Example 1: map in python 3

map(function, iterable, ...)

Example 2: map in python

'''try this instead of defining a function'''

a = [1,2,3,4]
a = list(map(lambda n: n+n, a))

print(a)

Example 3: pyhton map

def calculateSquare(n):
    return n*n


numbers = (1, 2, 3, 4)
result = map(calculateSquare, numbers)
print(result)

# converting map object to set
numbersSquare = list(result)
print(numbersSquare)

Example 4: map python 3

#generate a list from map iterable with lambda expression
list( map(lambda x: x*2, numeros) )