Comment faire une nouvelle colonne avec Explose Pyspark

newDF = (
  df
    .withColumn("items", explode("items"))
)
display(newDF)
Envious Eel