I have string and digits in my dataframe which look like this
number
1.52E+11
8.12E+11
FAY853
GUGY
my expected result will be look like this
number
152000000000
812000000000
FAY853
GUGY
I want to show full digits. How to handle number and digits together ? and show only full digits for large number.
I tried pd.set_option('display.float_format', '{:.2f}'.format)
but didn't work. Showing the same result like original dataframe