I want to write a dataframe to a file
dataToGO = {'Midpoint': xdata1, '': "", 'Avg Diam': ydata1, '' : ""}
colums = ['Midpoint', '', 'Avg Diam', '']
ToFile = pad.DataFrame(data=dataToGO, columns=colums)
ToFile.to_csv("processed"+filname+".csv", index=False)
However, I want to add 10 blank lines in the file before the contents of the data frame. How do I do that?