Learn

Now that we’ve learned about range, we have two ways of iterating through a list.

Method 1 - for item in list:

for item in list: print item

Method 2 - iterate through indexes:

for i in range(len(list)): print list[i]

Method 1 is useful to loop through the list, but it’s not possible to modify the list this way.

Method 2 uses indexes to loop through the list, making it possible to also modify the list if needed. Since we aren’t modifying the list, feel free to use either one on this lesson!

Instructions

1.

Create a function that returns the sum of a list of numbers.

  • On line 3, define a function called total that accepts one argument called numbers. It will be a list.
  • Inside the function, create a variable called result and set it to zero.
  • Using one of the two methods above, iterate through the numbers list. For each number, add it to result.
  • Finally, return result.

Take this course for free

Mini Info Outline Icon
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.

Or sign up using:

Already have an account?