To complete this challenge, you need to put together the given blocks so that the program finds the sum of all of the numbers in the list. All of the blocks that are needed have been provided; just put them together (don't add any or change them). In the Python programming language, it is even easier to do this, with less code overall and only one variable instead of two: nums = [1, 2, 3, 4, 5, 6, 7] total = 0 for i in nums: total = total + i print(total) Or a much faster version in Python -- just two lines! nums = [1, 2, 3, 4, 5, 6, 7] print(sum(nums)) Run it here https://repl.it/BWFP/5