polars.Series.arr.last#

Series.arr.last() Series[source]#

Get the last value of the sub-arrays.

Examples

>>> s = pl.Series(
...     "a", [[1, 2, 3], [4, 5, 6], [7, 8, 9]], dtype=pl.Array(pl.Int32, 3)
... )
>>> s.arr.last()
shape: (3,)
Series: 'a' [i32]
[
    3
    6
    9
]