[Solved] Pandas – Create dynamic column(s) from a single column’s values
You could run one apply() which will use for-loop to convert list to Series with headers – it can use enumerate to put correct number in headers. Because some rows have less participants so it puts NaN which you can later fill with empty strings. And next you can use join() to add all as … Read more