Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
jackfrued
Edit Copy
Star
GitHub Repository:
jackfrued/Python-100-Days
Path:
blob/master/公开课/第05次公开课-算法入门系列1-周而复始/code/example03.py
3
0
7
6
views
1
a
,
b
=
0
,
1
2
for
num
in
range
(
1
,
101
)
:
3
a
,
b
=
b
,
a
+
b
4
print
(
f'
{
num
}
:
{
a
}
'
)
5
6
7