1. What will be the output of the following Python code? l=[...
1. What will be the output of the following Python code? l=[...
1. What will be the output of the following Python code? l=[-2, 4]...
1. What will be the output of the following Python code?l=[-2, 4]m=map(lambda x:x*2, l)print(m)a) [-4, 16]
b) Address of m
c)...