CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
jackfrued

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: jackfrued/Python-100-Days
Path: blob/master/公开课/文档/第05次公开课-算法入门系列1-周而复始/code/example02.py
Views: 729
1
nums = []
2
for i in range(100000):
3
nums.insert(0, i)
4
print(nums)
5
6