I'm new in python and I would like to transpose CSV files.
My csv:
sphere,product
-9.00,COA-91391
-9.50,COA-91391
+0.50,COA-91392
+0.75,COA-91392
+1.00,COA-91392
The output I wish:
COA-91391,-9.00,-9.50
COA-91392,+0.50,+0.75,+1.00
If someone can give me some help on how to proceed.
Thanks in advance.