I've read about how you can write a df to CSV in pandas, and suppress scientific notation using:
float_format='{:f}'
But what about an existing csv with several columns that look like this:
FIPS_BLOCK FIPS_BLKGR FIPS_TRACT
5.51E+14 5.51E+11 5.51E+10
5.51E+14 5.51E+11 5.51E+10
5.51E+14 5.51E+11 5.51E+10
5.51E+14 5.51E+11 5.51E+10
Is there any way to re-write this csv and change these columns to not be scientific notation? I want them to be eventually strings (in other words, they are numeric, but want them to be text). I think I need to pass the CSV in pandas, do something, then write it again (overwrite existing CSV).