How to create a column using 2 column value

Df[‘x’] = 3,7
Df2[‘y’] = 2,3

Both these are 2 columns in a excel sheet.
I have to generate a single column using there similar index value with comma splitter.

Expected output = (3,2),(7,3)

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.