To skip first 5 rows of CSV file, which argument will you give in read_csv( )
Answers
Answered by
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