I need to save a df to excel. First column has 15 digits so it is taking as scientific number; how to avoid that
I have a to save a file to_excel But the fist column has 15 digits in it and in Excel is showing as 31100000+13 something in want this to show as number itself how do I do that. writer = pd.ExcelWriter(‘test1.xlsx’, engine = ‘xlsxwriter’) df.to_excel(writer,’Sheet1′) workbook = writer.book worksheet = writer.sheets[‘Sheet1’] format1 = workbook.add_format({‘num_format’: ‘#’})… Read More I need to save a df to excel. First column has 15 digits so it is taking as scientific number; how to avoid that