-2
I would like to format the result of sum()
.
When I use the following command:
# Valor concedido de aposentadoria por ano
df.groupby('Ano')['Vlr Benefícios Concedidos (R$)'].sum()
It returns me the following result:
Ano
1996 --- 1.646539e+08
1997 --- 2.360492e+08
1998 --- 1.730143e+08
1999 --- 8.525424e+07
2000 --- 7.506213e+07
I would like to format these numbers so that they are for example 1.646.539,00
.
What would df? dataframe? Although the answer is accepted, the question is incomplete.
– Seu Madruga