Séparateur de virgule F String Python

'{:,}'.format(value)  # For Python ≥2.7
f'{value:,}'  # For Python ≥3.6
Frightened Flatworm