I am using pyspark or pandas
I have this dataframe and each column contain a list of value:
COL1 | COL2 | COL3
["A","B"] | ["V1", "V2", "V3"] | ["V4","V5"]
I need to explode each column to present data differently and generate this dataframe, there is no data order between column :
COL1 | COL2 | COL3
A | V1 | V4
B | V2 | V5
null | V3 | null
thank you for your help