Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python sum of array until index

def sum_up_to_index(lst, index):     
  return sum(lst[:index]) 
Source by www.quora.com #
 
PREVIOUS NEXT
Tagged: #python #sum #array #index
ADD COMMENT
Topic
Name
6+8 =