合并阵列列表飘动并筛选它
我的列表
list1 = [1,2,3]
list2 = [a,b,c]
的组合输出
我想要: [1,a | 2,b | 3,c]
帮助我弄清楚。
my List
list1 = [1, 2, 3]
list2 = [A, B, C]
I wanted the combined output of:
[1, A | 2, B | 3, C]
help me to figure it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试一下。
You can try this.
是这样的东西吗?
Is something like this what you want?
我猜这是您要寻找的东西
所以,只是为了澄清答案,每个列表都在循环并将一个接一个地添加到另一个列表中,直到没有剩余的元素为止。
循环每个列表
这将适用于不均匀列表。
希望它有帮助。
I'm guessing this is what you are looking for
So, just for some clarification about the answer, each list is being looped and added to another list one after another till there are no elements left.
loop each list
This will work even for uneven lists.
Hope it helps.