przecinek separator 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