I've tried to search online, but with no sucesess. I have an output code which I try to export as csv file after modulations. When I open the exported file the width and height are just too small it looks like that the export code I have thus far is:
date = str(pd.to_datetime('today')).split()[0]
output.to_csv(f"{date} shifts.csv", index_label=False, index=False)
I want to make it more spaced by a fixed value I will provide. How can I do that? Thanks alot!