Sorry I don't quite follow. By select them do you mean how to read only the first 3 columns? or how to select columns 350,351 and 352? Not sure what *How could I choose 350 351 and so on* means either
– ankyMar 11 '21 at 15:24
It is my fault. I wanna choose data 351,352.... These numbers stand for data but they are shown as titles.
– Jack21Mar 11 '21 at 15:25
My first excel row contains numbers from 351 to 2500. By using Jupyter they are shown as titles. I want to select all these numbers as one row
– Jack21Mar 11 '21 at 15:27
3
ah I get it, `pd.read_excel(file.xslx, header=None)` should do the trick.
– Umar.HMar 11 '21 at 15:27