Answers for "python f string format decimal"

10

f string float format

>>> a = 10.1234
>>> f'{a:.2f}'
'10.12'
Posted by: Guest on July-21-2020
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
0

python format decimal

# 2.6 python  and newer and python 3.x
# Put desired number of decimal by changing the number inside {:.2f} bellow;
print(' {:.2f}'.format(71.428571))
71.43
# 2.6 python and older
# Put desired number of decimal by changing the number inside '%.2f' bellow;
print('%.2f'%(71.428571))
71.43
Posted by: Guest on July-29-2021

Code answers related to "python f string format decimal"

Python Answers by Framework

Browse Popular Code Answers by Language