Skip to content

Instantly share code, notes, and snippets.

@AndersDeleuran
Created May 3, 2015 09:51
Show Gist options
  • Save AndersDeleuran/0fbe6512f5ef542ef1bd to your computer and use it in GitHub Desktop.
Save AndersDeleuran/0fbe6512f5ef542ef1bd to your computer and use it in GitHub Desktop.
MassAddition using For Loop
Sum = 0
Results = []
for v in Values:
Sum += v
Results.append(Sum)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment