“Format de décimal Python 2” Réponses codées

format vers 2 ou n décimaux Python

num = 123.4567
formatted_num = '{0:.2f}'.format(num) # to 2 decimal places
# formatted_num = '123.46'
Anxious Alligator

Python 2 décimales

print(format(432.456, ".2f"))

>> 432.45

print(format(321,".2f"))

>> 321.00
Wild Weasel

Forcer deux décimales Python

print ("{0:.2f}".format(a)) 
Lively Lynx

Impression avec format flotter à 2 décimales Python

formatted_float = "{:.2f}".format(a_float)
Spotless Seahorse

Format de décimal Python 2

>>> foobar = 3.141592
>>> print(f'My number is {foobar:.2f} - look at the nice rounding!')

My number is 3.14 - look at the nice rounding!
Wide-eyed Wren

Format de décimal Python 2

print "%.2f" % 5
Wide-eyed Wren

Réponses similaires à “Format de décimal Python 2”

Questions similaires à “Format de décimal Python 2”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code