gpt4 book ai didi

python - 将数组列表发送到 For 循环

转载 作者:行者123 更新时间:2023-11-28 21:57:18 25 4
gpt4 key购买 nike

是否可以将 numpy 数组列表发送到 Python 中的 for 循环,然后让它遍历每个数组?伪示例:

apples = [red, green]
for type in apples:
print type

red 和 green 是包含不同品种的红苹果和绿苹果列表的数组?目前它只会打印“红色”和“绿色”,但我希望循环能够访问数组。 Python 的新手所以如果这是一个简单的问题请原谅!谢谢你的帮助。

最佳答案

你可以这样做:

apples = [red, green]
for type in apples:
for item in type:
print item

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

关于python - 将数组列表发送到 For 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20037009/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com