Код: Выделить всё
a = pl.Series("a",[[1,2],[2,3]])
b = pl.Series("b",[[4,5],[6,7]])
c = a+b
Код: Выделить всё
PanicException: `add` operation not supported for dtype `list[i64]`
Код: Выделить всё
c = [[5,7],[8,10]]
Подробнее здесь: https://stackoverflow.com/questions/763 ... s-elements