“Cómo imprimir 2 decimal en python” Código de respuesta

Impresión de Python con 2 decimales

# round a value to 2 decimal points
value_to_print = 123.456
print(f'value is {round(value_to_print, 2)}')
# prints: value is 123.46
Selfish Sardine

Python Print 2 Decimal Places

# this will print up to digits after decimal
print("%.2f" % (70/105))
rajib2k5

Imprimir 2 decimales Python

print("{0:.2f}".format(sum(query_marks)/len(query_marks)))
Grieving Goshawk

Cómo imprimir 2 decimal en python

for i in range(10):
    j=i*0.1
    print('%0.2f' %j)
Bewildered Booby

Respuestas similares a “Cómo imprimir 2 decimal en python”

Preguntas similares a “Cómo imprimir 2 decimal en python”

Más respuestas relacionadas con “Cómo imprimir 2 decimal en python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código