I believe the title of this thread explains what I am looking for. I am curious to know what the syntax is for skipping multiple rows; I can\'t seem to find such information
If you already know the row numbers you wish to skip, then you can also use:
import numpy as np InputFile = './Filename.txt' Dataset = np.loadtxt(InputFile, skiprows= 0 + 1 + 2 + 3 + 4 + 5) print(Dataset)
This will skip the first five rows and print the remaining data.