Is there a shorter way to add each item of a list

前端 未结 0 701
再見小時候
再見小時候 2021-01-03 01:22

I want to combine 2 lists together in this way

def combine(list1, list2):
    list3 = []
    for i in range(max(len(list1), len(list2))):
        if i > le         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题