This website works better with JavaScript
Halaman utama
Jelajahi
Bantuan
Masuk
zhensolid
/
Python-100-Days
Liatin
1
Bintangi
0
Fork
0
Berkas
Masalah
0
Permintaan Tarik
0
Wiki
Pohon:
3ef372196c
Ranting
Tag
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
Riwayat
Mentahan
1
2
3
4
5
a, b = 0, 1
for num in range(1, 101):
a, b = b, a + b
print(f'{num}: {a}')