如何在python中将两个列表交叉在一起?例:
list_1 = [1, 2, 3] list_2 = [4, 5, 6]
预期结果:
combined_list = [1, 4, 2, 5, 3, 6]
python list
list ×1
python ×1