I have a txt file which does not have column names. When I try importing it using pandas.read_csv, the first row becomes the column names.
the txt file is such as:
0 9 8 2 1
1 2 3 2 2
2 3 4 5 3
How can I import this txt file successfully without the first row (0 9 8 2 1) being column names for the data frame?
And how can I insert the column names in the data frame?