I csv have a file with data lines, but it misses the label line. This label line is a string, coma separated, ready to be appended on top.
import pandas as pd
data = pd.read_csv("C:\\Users\\Desktop\\Trades-List.txt", sep=',')
labelLine = "label1,label2,label3"
How to add the 'labelLine' on top of data and make sure it is properly considered as the label line of the file?