Python F String Thousand Separator

'{:,}'.format(20000)  # For Python ≥2.7
f'{20000:,}'  # For Python ≥3.6
Smoking Snake