I'm converting my csv into dataframe using pandas but when printing it it prints index automatically I tried to use
index=false
and
dataframe.drop(['Unnamed 0']
but non worked this is the code
data = pd.read_csv('testlast.csv', sep='\t', index=False)
print(data)
the output looks like
that is how the sentence look like in csv
how to remove those auto generated numbers