“Python F String Decimal Lugares” Código de respuesta

F-String Ponto Decimal Python

valor_hora_trabalho = float(input("Valor por hora trabalhada: "))
horas_trabalhadas = float(input("Horas trabalhadas: "))

salario  = valor_hora_trabalho * horas_trabalhadas

print(f"Salário do mês: R${salario:.2f}")
Panicky Parrot

Python F String Decimal Lugares

>>> a = 10.1234
>>> f'{a:.2f}'
'10.12'
Danger D

f Cadena de lugares decimales

>>> a = 10.1234
>>> f'{a:.2f}'
'10.12'
Perro Fiel

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

Python F String 2 decimales

>>> number1 = 10.1234
>>> f'{number1:.2f}'
'10.12'
Arno Deceuninck

Formato de Python 2 Decimal Places

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

Respuestas similares a “Python F String Decimal Lugares”

Preguntas similares a “Python F String Decimal Lugares”

Más respuestas relacionadas con “Python F String Decimal Lugares” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código