When I try to execute this code
g = [1, 2, 3, 4, 5, 6]
zip(*g)
I get the following error
zip argument #1 must support iteration
I am trying to convert row into column vector
I even tried map(list, zip(*gate))
still I get the same error
Please help