How can I format a decimal number so that 32757121.33 will display as 32.757.121,33?
32757121.33
32.757.121,33
I have found another solution:
'{:,.2f}'.format(num).replace(".","%").replace(",",".").replace("%",",")