So I have some arrays, which look like this:
x = ['1', '2', '3', etc]
y = ['1', '2', '3', etc]
What I want to do is when I have a list of lists, so say
z = [x, y]
I want to then iterate through z to obtain the n-th element of each list, as a float, and place it in an array.
So the desired output would be:
a = [1, 1]
b = [2, 2]
and so on.
Is there a way to do this within a for loop?