A Very Big Sum

  • + 1 comment

    This is the code I have written for python : def aVeryBigSum(ar): r = 0 for i in range (0,len(ar),1): r += ar[i] return r Is this the best way or is there another more proficient way ?