import pandas as pd tsv_file='name.tsv' csv_table=pd.read_table(tsv_file,sep=' ') csv_table.to_csv('new_name.csv',index=False)