How to read part of the data in CSV files by python

the file format is as follows: you need to read the data of line num (1-10), which is divided into three parts.

Mar.20,2021

give you an idea. Read the generated list first, and then use slicing
such as three parts with a total of 64 lines
. The first part is [9:20]
. The second part is [31:42]
. The third part is [53:]
.
Menu