📜  从列表 python 代码示例访问元素

📅  最后修改于: 2022-03-11 14:46:20.245000             🧑  作者: Mango

代码示例1
list1 = [1,2,3,4,5]
for i in list1:
  print(i)