This website works better with JavaScript
Startseite
Erkunden
Hilfe
Anmelden
zhensolid
/
Python-100-Days
Beobachten
1
Favorit hinzufügen
0
Fork
0
Dateien
Issues
0
Pull-Requests
0
Wiki
Struktur:
24eb8e2fdd
Branches
Tags
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
Verlauf
Originalformat
1
2
3
4
5
a, b = 0, 1
for num in range(1, 101):
a, b = b, a + b
print(f'{num}: {a}')