map function used to convert in python code example
Example 1: 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 2: use map in python to take input
c = map(int,input().split)