Question from the Python Machine Learning test

Read the contents of the file.csv file by block (or by packet) of five lines.

Easy

What does the following code do:

import pandas as pd

for bloc in pd.read_csv('Data\file.csv', chunksize = 5):
    print("Nouveau bloc:")
    print(bloc)
Author: W3D TeamStatus: PublishedQuestion passed 492 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!