On python I have two lists basicaly
xvales = [2, 4, 6, 8, 10, 12]
yvales = [100, 95, 90, 85, 80, 75]
sumation = 0
How can I use a for loop and pull corresponding values from each list to use in a formula.first iteration i=2 and j=100. second iteration i=4 and j=95. third iteration i=6 and j=90. I think you understand what I'm trying to do. I did try to do this.
For i in xvales and j in yvales:
v = i **2 / ( j+1 )
sumation += v