This website works better with JavaScript
Home
Verkennen
Help
Inloggen
zhensolid
/
Python-100-Days
Volgen
1
Ster
0
Vork
0
Bestanden
Issues
0
Pull-aanvragen
0
Wiki
Boom:
a903d38368
Aftakkingen
Labels
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
/
example01.py
example01.py
80 B
Geschiedenis
Ruwe
1
2
3
4
5
nums = []
for i in range(100000):
nums.append(i)
nums.reverse()
print(nums)