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