This is definitely an issue of delimiter, as most of the csv CSV are got create using sep='/t'
so try to read_csv
using the tab character (\t)
using separator /t
. so, try to open using following code line.
data=pd.read_csv("File_path", sep='\t')