Polars convert string of digits to list
Polars convert string of digits to list Question: So i have a polars column/series that is strings of digits. s = pl.Series("a", ["111","123","101"]) s shape: (3,) Series: ‘a’ [str] [ "111" "123" "101" ] I would like to convert each string into a list of integers. I have found a working solution but i am …