I would like to know the function of: {}
in the Python language and more specifically within the PRINT
function as in this code?
Salario = int(input('Salario? '))
imposto = 27.
while imposto >0.:
imposto = input('Imposto ou (0) para sair: ')
if not imposto:
imposto = 27.
else:
imposto=float(imposto)
print("Valor Real: {0}".format(Salario-(Salario*(imposto*0.01))))