我有一份清单
a = [[1,2],[3,4],[5,6],[7,8],[9,10]]
结果
New_a = [[1,3,5,7,9],[2,4,6,8,10]]
任何智能方式或python内置函数都可以解决问题吗?
python list
list ×1
python ×1