so I have this CSV and I would like to do the following:
Original data:
Parsed Data:
So, to put in words, if a column has commas then I want to create a new column with only one value and delete the column which has multiple values.
For example: N2 has I1, I3 and I4. Hence the new data gets 3 columns, containing one value only.
I want to make it dynamic in such a way that all the permutations are reflected. Like in the case of N3 that has 2 places and 2 items.
I am trying to use python's pandas to do this. Some help would be appreciated.

