SyntaxFix
Write A Post
Hire A Developer
Questions
>>> x = arange(20).reshape(4,5) >>> x array([[ 0, 1, 2, 3, 4], [ 5, 6, 7, 8, 9], [10, 11, 12, 13, 14], [15, 16, 17, 18, 19]])
if you want the second column you can use
>>> x[:, 1] array([ 1, 6, 11, 16])