gpt4 book ai didi

python-3.x - python : iterate over a nested list and a flat list together

转载 作者:行者123 更新时间:2023-12-04 04:06:57 24 4
gpt4 key购买 nike

我正在尝试一起迭代两个列表(嵌套列表和平面列表):

例如:

x_list = ['11', '22']
y_list = [[33, 44], [55, 66, 77]]


for x, y in zip(x_list, y_list):
print(x,y)

输出:

11 [33, 44]
22 [55, 66, 77]

但我想输出如下:

11 33

11 44​​

22 55

22 66

22 77

最佳答案

您可以在嵌套循环中迭代 y 中的项目:

for x, y in zip(x_list, y_list):
for i in y:
print(x, i)

关于python-3.x - python : iterate over a nested list and a flat list together,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62307842/

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