Python/gloss python array loop

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python遍历数组

循环数组元素

你可以使用 for in 循环遍历数组的所有元素。

打印中的每个项目 cars 数组:

  for x in cars:
  print(x)