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

sql - text truncated using perl DBI insert -

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

php - Pass object by reference or value -