I need all numbers in my pandas dataframes converted to german number notation. It means there should be thousands decimal dot and a comma for fractions.
example.:
52.634,99
I can do it easily the other way around, first comma, then dot:
pd.options.display.float_format = '{:,.2f}'.format
Why is it not possible to use it this way?
pd.options.display.float_format = '{:.,2f}'.format
error:
ValueError: Format specifier missing precision