I need help to build a Python script that transposes part of a csv as in the example below:
[[0A,0B,0C,0D,0E,0F]
[01,02,03,04,05,06]
[07,08,09,10,11,12]
[13,14,15,16,17,18]
[19,20,21,22,23,24]]
in this:
[[0A,0B,0C]
[01,02,03]
[01,02,04]
[...
asked by
30.06.2015 / 18:30