79626372

Date: 2025-05-17 09:26:26
Score: 2
Natty:
Report link

may I ask how could I split a column of string into list of list?

Try This:

Snippet:

df = df.with_columns(
    pl.col(0).str.split(",").alias("split_column")
)
Reasons:
  • Blacklisted phrase (1): may I ask
  • Whitelisted phrase (-2): Try This:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Adios Gringo