I am trying to extract the 7th to 14th columns in a data frame. However
df[0:3] only gives the 1st to 3rd rows.
df[0:3]
Does anyone knows what should I
Looks that I found it....
By using iloc..
df.iloc[:,your_col_index]