python insert所用 插入到自定的位置时间:2023-03-08 18:49:55 a = list(range(50)) b = list(range(50)) c = [] for x in a: c.insert(x, [a[x], b[x]]) print(c)