say i have a csv file.csv in this format:
dfaefew,432,1
vzcxvvz,300,1
ewrwefd,432,0
how to import the second column as a numpy.array and the third column as another one like this:
second = np.array([432, 300, 432])
third = np.array([1, 1, 0])
I am using python2.7 in Ubuntu.
Thx ahead!