“f String -Dezimalstellen” Code-Antworten

F-String-Ponto-Dezimalpython

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

f String -Dezimalstellen

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

Ähnliche Antworten wie “f String -Dezimalstellen”

Fragen ähnlich wie “f String -Dezimalstellen”

Weitere verwandte Antworten zu “f String -Dezimalstellen” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen