I have the following:
list = [32,12,43,24,65,16]
and I'm trying to sum the elements inside that list excluding the first element, I want to sum (12,43...) I have tried:
sum(list[,1])
sum(list,[1])
sum(list,1)
but none of them seems to work. The documentation shows sum(iterable[, start])
.