How to read a csv file with multiple header rows into pandas?

csv, header, jupyter-notebook, pandas, python

Solution

You need parameter `header=[0,1]` in `read_csv`.

Problem

I am not sure how to read the multiple rows. Do i have to do it without the rows and then do it manually in pandas? Or is there a way to read the whole csv file into pandas? This is how the file looks Poverty data

Original source