This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| while True: | |
| print('Escolhar uma das opções') | |
| print('[BRL] Real') | |
| print('[USD] Dólar Americano') | |
| print('[CAD] Dólar Canadense') | |
| print('[EUR] Euro') | |
| print('[S] Sair') | |
| valor=float(input('Diga um valor: ')) | |
| Opcao=(input('Escolha uma das opçoes:')) | |
| if Opcao=='BRL': |