list1 = ["a", "b", "c"] list2 = [1, 2, 3] list3 = list1 + list2 print(list3) output --- ['a', 'b', 'c', 1, 2, 3]
但我想要这样的输出 ---
['a',1,'b',2,'c',3]
请帮我
python datetime list
datetime ×1
list ×1
python ×1