I have a text file I'm trying to import as a .csv file using pandas. The text file has the last column indented and spilling into several rows. Raw text file. read_csv with sep="\t" separates the rows as three instead of merging them into one. sep = " " throws an error since the rows have different elements. I can't skip rows as this is all information that needs to be read. Thanks!