Python Fstring formatting

f"this is a f-string"

Examples of f-strings

a= 10.1234 >>> f'{a:.2f}' '10.12'

>>> f'{a*1000:,.2f}' '10,123.40'