python - looping through list of lists -


how can this: coord + float(y) - float(x)

out = [[ coord - float(y) v in v ] y in y_coord ]  out = [[ coord + float(x) v in v ] x in x_coord ]  

out = [[coord + float(y) - float(x) v in v] x,y in zip(x_coord, y_coord)] 

Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -