“Python Limit Float à 5 chiffres” Réponses codées

à deux décimales Python

>>> x = 13.949999999999999999
>>> x
13.95
>>> g = float("{0:.2f}".format(x))
>>> g
13.95
>>> x == g
True
>>> h = round(x, 2)
>>> h
13.95
>>> x == h
True
Fantastic Fly

Python Limit Float à 5 chiffres

40.567676464633
Roghayyeh Kazemi

Réponses similaires à “Python Limit Float à 5 chiffres”

Questions similaires à “Python Limit Float à 5 chiffres”

Plus de réponses similaires à “Python Limit Float à 5 chiffres” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code