CBSE Class 12 Informatics Practices Question 25 of 70

Importing/Exporting Data between CSV Files/MySQL and Pandas — Question 6

Back to all questions
6
Question

Question 6

To suppress first row as header, which of the following arguments is to be given in read_csv() ?

  1. noheader = True
  2. header = None
  3. skipheader = True
  4. header = Null
Answer

header = None

Reason — The header = None argument is to be given in read_csv to suppress the first row as the header.