answered 10 years ago
I usually do this using a for loop. For example,
for
L=[[1,2],[3,4],[5,6]] # overly simple example function f(x)=x^2 for entry in L: #your code to run here f(entry[0])