Format fécimal dans f String py
>>> a = 10.1234
>>> f'{a:.2f}'
'10.12'
Danger D
>>> a = 10.1234
>>> f'{a:.2f}'
'10.12'