First time here? Check out the FAQ!
answered 2014-10-18 12:49:06 +0100
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])