When I create a dataframe from a excel file, it has a string value '2098E10'. But pandas interpret the letter E on string as scientific notation converting the value to 20980000000000. How can I suppress this panda's behavior to keep the values '2098E10' as string?
I have tried to convert the values to string, but the value will be '20980000000000'.
dtypewhen usingread_excel?