This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
zhensolid
/
Python-100-Days
Seguir
1
Destacar
0
Fork
0
Archivos
Incidencias
0
Pull Requests
0
Wiki
Árbol:
fe5ad865b2
Ramas
Etiquetas
dependabot/pip/50WPython/code/Python/opencourse/lxml-4.6.3
dependabot/pip/50WPython/code/Python/opencourse/pygments-2.7.4
dependabot/pip/50WPython/code/Python/opencourse/urllib3-1.26.5
master
Python-100-Days
/
公开课
/
文档
/
第05次公开课-算法入门系列1-周而复始
/
code
/
example03.py
example03.py
84 B
Histórico
Raw
1
2
3
4
5
a, b = 0, 1
for num in range(1, 101):
a, b = b, a + b
print(f'{num}: {a}')