I have a csv file with 2 columns and I want to create another csv file and fill it like shown in the figure.
I tried:
xx = pd.read_csv('abc.csv', sep=';', encoding='latin-1')
for row in xx:
ss = []
for p in row['id']:
ss.append(row['description'])
but I don't see how to continue.