This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
zhensolid
/
Python-100-Days
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
b9c18a7d43
Rami (Branch)
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
/
example01.py
example01.py
80 B
Cronologia
Originale
1
2
3
4
5
nums = []
for i in range(100000):
nums.append(i)
nums.reverse()
print(nums)