python f string decimal places code example

Example 1: 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}")

Example 2: f string decimal places

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

Example 3: python f-string padding

#!/usr/bin/env python3

name = 'Peter'
age = 23

print('%s is %d years old' % (name, age))
print('{} is {} years old'.format(name, age))
print(f'{name} is {age} years old')