I think I may be missing something obvious here, but I am new to python and pandas. I am reading a large text file and only want to use rows in range(61,75496). I can skip the first 60 rows with
keywords = pd.read_csv('keywords.list', sep='\t', skiprows=60)
How can I only include the rows inbetween these values? There unfortunately is no userows parameter.
Is there something like
range(start, stop, start, stop)?