Computer Science, asked by AmarendraDehury, 1 month ago

To skip first 5 rows of CSV file, which argument will you give in read_csv( ) ​

Answers

Answered by FabihaSabahath
0

Answer:

# Skip rows at specific index.

usersDf = pd. read_csv('users.csv', skiprows=[0,2,5])

print('Contents of the Dataframe created by skipping specifying lines from csv file ')

print(usersDf)

Similar questions