英文:
How can I merge the two lists by 2 jumps
问题
如何通过从第一个列表选择第一个元素,从第二个列表选择第二个元素,依此类推,将这两个列表合并为一个列表,然后从第一个列表选择第三个元素,从第二个列表选择第三个元素... 以此类推?
列表1=[a, b, c, d, e, f]
列表2=[g, h, i, j, k, l]
所需的列表是:
列表3=[a, h, c, j, e, l]
在Python中,我尝试使用两个循环进行切片,但不起作用。
英文:
How can I merge the two lists in one by selecting 1st element from 1st list 2nd element from second list 2nd element...and then 3rd element from 1st list 3rd element
list 1=[a,b,c,d,e,f,] and
list 2=[g,h,i,j,k,l]
the required list is
list 3=[a,h,c,j,e,l]
in Python
I tried slicing with two loop it doesn't work for me
答案1
得分: -1
list3 = []
for i in range(0, len(list1), 2):
list3.append(list1[i])
list3.append(list2[i+1])
英文:
list3 = []
for i in range(0,len(list1),2):
list3.append(list1[i])
list3.append(list2[i+1])
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论