KnowledgeBoat Logo
|

Informatics Practices

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

Python Pandas

3 Likes

Answer

header = None

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

Answered By

1 Like


Related Questions