Let\'s assume there is a list a = [1, 3, 5, 6, 8].
a = [1, 3, 5, 6, 8]
I want to apply some transformation on that list and I want to avoid doing it sequentially, so someth
# Python3 map(lambda args: print(args[0],args[1]) ,enumerate(a_list)) # use arg list, just get the result with index # Python2 map(lambda index,content: print(index,content) ,enumerate(a_list))