Format flottant Pandas à CSV

// df = dataframe
df.to_csv('yourfile.csv', float_format='{:f}'.format, encoding='utf-8')
Mappy Show