This is my csv file.
Uid,Message,Status 9425252526,Hello 1,0 9425252527,Hello 2,0 9425252528,Hello 3,0 9425252529,Hello 4,0 9425252530,Hello 5,0 if I convert it to pandas dataframe and write it back to another file,it adds this unwanted extra column as below (leftmost column)
,Uid,Message,Status 0,9425252526,Hello 1,0 1,9425252527,Hello 2,0 2,9425252528,Hello 3,0 3,9425252529,Hello 4,0 4,9425252530,Hello 5,0 How to remove this column ?