Note: index_col=False can be used to force pandas to not use the first column as the index, e.g., when you have a malformed file with delimiters at the end of ... pandas.MultiIndex · pandas.DataFrame.to_csv · Pandas.read_table · Dev
Use index_col=False instead of index_col=None when you have delimiters at the end of each line to turn off index column inference and discard the last column.
If you want to avoid pandas outputting the index when writing to a CSV file you can use the option index=False, for example: df.to_csv('example.csv', index= ...