pd.read_csv('examples/ex4.csv', skiprows=[0, 2, 3])
时间: 2024-05-22 22:12:28 浏览: 113
从excel,csv文件读出数据
This code reads a CSV file located at 'examples/ex4.csv' and skips the rows with index 0, 2, and 3. The resulting DataFrame will not include those rows.
阅读全文