Converting data from .csv file to .json - Python
I need to convert data from my csv file to the one i am gonna use which is .js . Lp.;Name;Surname;Desc;Unit;Comment 1;Jan;Makowski;Inf;km; 2;Anna;Nowak;Pts;km;Brak reakcji If you can see column 'comment' does not always have record and I need to keep it that way. Also between data there is amount of tabs I need to set as well. I've a file,i am working on right now but It show's me data in row like : [{"Lp.;Name;Surname;Desc;Unit;Comment": "1;Jan;Makowski;Inf;km;"}, {"Lp.;Name;Surname;Desc;Unit;Comment": "2;Anna;Nowak;Pts;km;Brak reakcji"...] I am new to python and I have no idea how to define