Skip to content

Commit

Permalink
Feita correção do exercício 16 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 fbbd10d commit 4b29310
Show file tree
Hide file tree
Showing 2 changed files with 18 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 @@ -259,3 +259,7 @@ jobs:
if: always()
run: |
python -m doctest -f secao_03_estrutura_de_repeticao/ex_15_fibonnacci_ate_n.py
- name: Correção do Exercício 16 da seção de Estrutura de Repetição
if: always()
run: |
python -m doctest -f secao_03_estrutura_de_repeticao/ex_16_fibonnacci_ate_valor_maior_que_500.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""
Exercício 16 da seção de estrutura sequencial da Python Brasil:
https://wiki.python.org.br/EstruturaDeRepeticao
A série de Fibonacci é formada pela seqüência 0,1,1,2,3,5,8,13,21,34,55,... Faça um programa que gere a série até que o
valor seja maior que 500.
>>> calcular_serie_de_fibonacci_ate_valor_ser_maior_que_500()
'0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610'
"""


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

0 comments on commit 4b29310

Please sign in to comment.