Python ribuan pemisah
'{:,}'.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
import locale
locale.setlocale(locale.LC_ALL, '') # Use '' for auto, or force e.g. to 'en_US.UTF-8'
'{:n}'.format(value) # For Python ≥2.7
f'{value:n}' # For Python ≥3.6