“Python 2 Decimal Places” Código de respuesta

formato a 2 o n decimales lugares python

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

Python 2 Decimal Places

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

>> 432.45

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

>> 321.00
Wild Weasel

Fuerza dos decimales Python

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

Encontrar 2 decimales Python

a_float = 3.14159
formatted_float = "{:.2f}".format(a_float)
AK-47

Formato de Python 2 Decimal Places

>>> 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

decimal en pitón

>>> from decimal import *
>>> getcontext().prec = 6
>>> Decimal(1) / Decimal(7)
Decimal('0.142857')
>>> getcontext().prec = 28
>>> Decimal(1) / Decimal(7)
Decimal('0.1428571428571428571428571429')
Dead Dormouse

Respuestas similares a “Python 2 Decimal Places”

Preguntas similares a “Python 2 Decimal Places”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código