separador de coma f string python
'{:,}'.format(value) # For Python ≥2.7
f'{value:,}' # For Python ≥3.6
Frightened Flatworm
'{:,}'.format(value) # For Python ≥2.7
f'{value:,}' # For Python ≥3.6