如何使用分隔符加入列表列表.
in: list: [[1,2], [3,4,5], [6,7]] with separator: 0 result: [1, 2, 0, 3, 4, 5, 0, 6, 7]
python list-comprehension
list-comprehension ×1
python ×1