xxxxxxxxxx
# Build list_1 with values from 0 to 4
list_1 = list(range(5))
# Use map along with the first lambda to create list_2
list_2 = list(map(lambda x: 2**x, list_1))
# Print list_2
print(list_2)
# Use map() to print all values delivered by the generator
map_result = map(lambda x: x**2, list_2)
for value in map_result:
print(value)