2
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]]
therein:
[[0A,0B,0C]
[01,02,03]
[01,02,04]
[01,02,05]
[01,02,06]
[07,08,09]
[07,08,10]
[07,08,11]
.
.
.
[19,20,24]]
Has anyone ever done this kind of transposition of a csv/xls via python ?
Never forget to post what you tried to do to solve the problem, even to give a basis for who will answer.
– João Paulo