We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa6fd4 commit 551b692Copy full SHA for 551b692
ex010.py
@@ -1,9 +1,11 @@
1
+#Currency Converter.
2
#10- Create a program that reads how much money a person has in their wallet and shows how many dollars they can buy.
3
# Considering US$1.00 = R$5.45
4
real = float(input('How much many do you have in R$:'))
5
dollar = real/5.45
6
print('So if you have R${} you can buy US${:.2f}.'.format(real, dollar))
7
8
+#Conversor de Moedas.
9
#10: Crie um programa que leia quanto dinheiro uma pessoa tem na carteira e mostre quantos dólares ela pode comprar. Considerando
10
# o dolar U$ 6.29
11
'''carteira = float(input('Quando dinheiro você tem na sua carteira em R$'))
0 commit comments