I have a list of points in the form of
points=[(x1,y1),...(xn,yn)...]
I am looking for a pythonic way to transform the list into
 x=[x1,...xn] y=[y1,...yn]
One way to do it would be
x = map (lambda x: x[1],points)
However, maybe there is a more pythonic way to directly draw from "points" mentioned above?