将数组列表发送到For循环

Car*_*ana 2 python iteration list

是否有可能将一个numpy数组列表发送到Python中的for循环,然后让它遍历每一个?一个假的例子:

apples = [red, green]
for type in apples:
    print type
Run Code Online (Sandbox Code Playgroud)

红色和绿色是哪个阵列包含不同品种的红色和绿色苹果?目前它只会打印'红色'和'绿色',但我希望循环能够访问数组.对Python来说很新,所以请原谅这是一个简单的问题!谢谢你的帮助.

Sim*_*ser 5

你可以这样做:

apples = [red, green]
for type in apples:
    for item in type:
        print item
Run Code Online (Sandbox Code Playgroud)

这将遍历主列表中的列表.