I think I can skip something obvious here, but I'm new to python and pandas. I am reading a large text file and want to use only the lines in the range (61.75496). I can skip the first 60 lines with
keywords = pd.read_csv('keywords.list', sep='\t', skiprows=60)
How can I only include lines between these values? Unfortunately, the userows parameter is missing.
Is there something like
range(start, stop, start, stop)?
source share