From 5327974c3044c20205bd26ad6ae7873ab1537d80 Mon Sep 17 00:00:00 2001 From: pinheir0g Date: Mon, 9 Oct 2023 17:07:52 -0300 Subject: [PATCH] Finalizando o desafio --- .../4-emprestimo/python/pinheir0g/README.md | 26 +++++++++++++++++++ .../python/pinheir0g/emprestimo.py | 11 ++++++++ 2 files changed, 37 insertions(+) create mode 100644 challenges/4-emprestimo/python/pinheir0g/README.md create mode 100644 challenges/4-emprestimo/python/pinheir0g/emprestimo.py diff --git a/challenges/4-emprestimo/python/pinheir0g/README.md b/challenges/4-emprestimo/python/pinheir0g/README.md new file mode 100644 index 00000000..6a62e260 --- /dev/null +++ b/challenges/4-emprestimo/python/pinheir0g/README.md @@ -0,0 +1,26 @@ +# Submissão de Exercicio + +**Exercicio:** 4 - Emprestimo + +**Nickname:** pinheir0g + +**Nível Técnico:** - Estudante + +**Empresa:** - Nenhuma + +**Twitter**: https://twitter.com/pinheir0g_ + +**Dificuldade de Resolução:** - Baixa + +**Comentários:** Simboraaaaaaa!! + +**Como rodar o desafio**: + +Use o comando abaixo: +```bash +python3 emprestimo.py +``` +ou +```bash +python emprestimo.py +``` diff --git a/challenges/4-emprestimo/python/pinheir0g/emprestimo.py b/challenges/4-emprestimo/python/pinheir0g/emprestimo.py new file mode 100644 index 00000000..26f1091b --- /dev/null +++ b/challenges/4-emprestimo/python/pinheir0g/emprestimo.py @@ -0,0 +1,11 @@ +def emprestimo(dados): + valor_emprestimo = float(dados[0]) + taxa_juros = int(dados[1]) + tempo = int(dados[2]) + + valor_final = valor_emprestimo * (1 + taxa_juros/100) ** tempo + return f'{valor_final:.2f}' + +print('Digite o valor do emprestimo, taxa de juros e o periodo de tempo:') +dados = input().split(',') +print(emprestimo(dados)) \ No newline at end of file