“Python F String Tempat Desimal” Kode Jawaban

f-string ponto desimal 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 Tempat Desimal

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

f string tempat desimal

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

format tempat desimal Python 2

>>> 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 Desimal

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

format tempat desimal Python 2

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

Jawaban yang mirip dengan “Python F String Tempat Desimal”

Pertanyaan yang mirip dengan “Python F String Tempat Desimal”

Lebih banyak jawaban terkait untuk “Python F String Tempat Desimal” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya