Write a function column2list(grid, n), where
grid is a list of lists and n is an integer, that returns
a list consisting of the element at position n of each row of
grid.
You can assume that 0 ≤ n < len(r) for each row
(i.e., element) of grid.
Examples
In the examples below, x is assumed to be the following list of lists: