Answers for "f string decimal places"

4

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}")
Posted by: Guest on April-24-2020
1

f string decimal places

>>> a = 10.1234
>>> f'{a:.2f}'
'10.12'
Posted by: Guest on September-30-2020

Code answers related to "f string decimal places"

Python Answers by Framework

Browse Popular Code Answers by Language