I am using pandas to read and write excel files with python (xlsx files, using openpyxl). Part of my data is text that looks like numbers. For instance, in the original excel file, I have a cell
123456789012345
and it imports fine as text in python. However, if I write the excel file again, the output cell has format 'General' and shows as
1.23e14
So my question is: Is there any way to set the number format in pandas? I would like to set it to '@', i.e., to openpyxl.styles.NumberFormat.FORMAT_TEXT
.
Unfortunately, the documentation of pandas.ExcelWriter is not so advanced (i.e., it does not exist).
Thank you for your help.