Hi, I'm stuck at this problem:
Create the SC20 list with the sums of the squares of the 20 first positive integers
I know that if I want to do a list with the squares of the 20 first positive integers I have to do this: [(x+1)^2 for x in range(20)] And I'll get this: [1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
But I don't know how to do it with the sums: Basically, what I want to get is this: [5,14,30,55,...]
Do you know how to do it? Thanks in advance. P.S. Sorry for my English.