I'm new to python, and I'm trying to get new vectors from the data I have. I have several lists, for example:
list1 = [a, b, c]
list2 = [d, e, f]
list3 = [m, n, o]
Output I want
vector1 = [a, d, m]
vector2 = [b, e, n]
vector3 = [c, f, o]
The first elements of the three lists are vector 1, the second elements are vector 2, and so on.