saving . . . saved slicing 1st column has been deleted. slicing 1st column has been hidden .
slicing 1st column
Title
Question
i tried to use the column index as well for accessing 1st column
c[0:4][0]..but it returns array([1, 2, 3, 4, 5 ])
i cant understand how it works pls explain

Python-3.4.3 Accessing-parts-of-arrays 07-08 min 30-40 sec 01-07-20, 12:11 p.m. alpha_death_rider

Answers:

It is returning elements of all columns 0 to 4 for the 0th row and hence you receive the row elements
08-07-20, 6:16 p.m. ankitrj.iitb


Log-in to answer to this question.