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/example02.py
3
0
7
6
views
1
nums
=
[
]
2
for
i
in
range
(
100000
)
:
3
nums
.
insert
(
0
,
i
)
4
print
(
nums
)
5
6