I have a polars dataframe like this:
test=pl.DataFrame({"myColumn": [[1,2,3],[1,2,3],[1,2,3]]})
Now i would like to append list elements from another list, lets say [4,5]
to each of the entries, so to get [[1,2,3,4,5],[1,2,3,4,5],[1,2,3,4,5]]
Q1: How would that be done ? Q2: What would be an approach to make it fast ?