I have an unlabeled dataset which contains 101 columns i.e. no column have any heading, now I want to start reading from column 2 to end i.e. 101th column. I am trying with this code :
data = np.loadtxt('structure-safety.inp', usecols = [2, 101])
or
data = pd.read_fwf('structure-safety.inp', usecols = [2,1,101])
I also tried with usecols = [2, :], [2:101] or used () instead of [] but in vain, can anyone help me here with this problem.