Convert dollars into real with Python

-4

Create a program that asks for the amount of US $ and the rate and displays the amount of R $.

dolar = float(input("Informe a quantidade de dólar para conversão: US$ "))
contaçao = float(input ("Informe o valor da cotação do dólar: R$ "))
conversao = float(input(("A quantidade de dólar convertido em real é: R$ ",conversao))
print (dolar*contacao)                                             

I need to do it in Python.

    
asked by anonymous 19.09.2017 / 03:19

1 answer

0

Rewriting your code according to a workable logic, it would look like this. The quotation of dolar U $ would be the current value multiplied by the quotation in R $. Basically this would be assigned to conversao . See:

dolar = float(input("Informe a quantidade de dólar para conversão: US$ "))
cotacao = float(input ("Informe o valor da cotação do dólar: R$ "))
conversao = dolar*cotacao
print('A quantidade de dólar convertido em real é: R$',conversao)

To limit the number of decimal places, for example in 3, just use "%.3f" % valor . Here's an example:

print('A quantidade de dólar convertido em real é: R$',("%.3f" % conversao))

See working here on repl.it .

    
19.09.2017 / 03:43