1
I created 2 programs separately to convert Real to Dollars and another to convert Dollars into Real, what I would like to do is create a kind of menu or input, where it would be written:
"Type 1 to convert Reais to Dollars or 2 to convert Dollars to Reais" when the user type 1, the program starts the variable that works this conversion, if you type 2, another variable is called on the user screen.
Below are the 2 programs:
#------------Reais P/ Dolar------------------------
Reais = float (input("Quantos reais? R$: "))
Cotação = float (input("Cotação de hoje é? "))
conversão = Reais/Cotação
print("Você possui US$" , ("%.2f" % conversão))
#-----------Dolar P/ Reais-------------------------
Dolar = float(input("Quantos Dolares? US$: "))
Cotação = float(input("Cotação de hoje é? "))
Conversão = Cotação*Dolar
print("Você possui: R$", ("%.2f" % Conversão))
You already know the concept of function?
– Felipe Avelar
To reply this question will help you: How to make a Console menu in Python
– Luiz Augusto