Skip to content

Commit

Permalink
Feita correção do exercício 15 da seção de repetição.
Browse files Browse the repository at this point in the history
  • Loading branch information
renzo authored and andradebru committed May 30, 2022
1 parent ce39263 commit fbbd10d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/corretor_de_exercicios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,3 +255,7 @@ jobs:
if: always()
run: |
python -m doctest -f secao_03_estrutura_de_repeticao/ex_14_qtde_pares_e_impares.py
- name: Correção do Exercício 15 da seção de Estrutura de Repetição
if: always()
run: |
python -m doctest -f secao_03_estrutura_de_repeticao/ex_15_fibonnacci_ate_n.py
27 changes: 27 additions & 0 deletions secao_03_estrutura_de_repeticao/ex_15_fibonnacci_ate_n.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
"""
Exercício 15 da seção de estrutura sequencial da Python Brasil:
https://wiki.python.org.br/EstruturaDeRepeticao
A série de Fibonacci é formada pela seqüência 1,1,2,3,5,8,13,21,34,55,... Faça um programa capaz de gerar a série até o
n−ésimo termo.
>>> calcular_serie_de_fibonacci(1)
'1'
>>> calcular_serie_de_fibonacci(2)
'1, 1'
>>> calcular_serie_de_fibonacci(3)
'1, 1, 2'
>>> calcular_serie_de_fibonacci(4)
'1, 1, 2, 3'
>>> calcular_serie_de_fibonacci(5)
'1, 1, 2, 3, 5'
>>> calcular_serie_de_fibonacci(6)
'1, 1, 2, 3, 5, 8'
>>> calcular_serie_de_fibonacci(7)
'1, 1, 2, 3, 5, 8, 13'
"""


def calcular_serie_de_fibonacci(n: int) -> str:
"""Escreva aqui em baixo a sua solução"""

0 comments on commit fbbd10d

Please sign in to comment.