Sum of consecutive numbers | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Sum of consecutive numbers

I have to calculate the sum of consecutive numbers from 1 to N This is my attempt at the code: N= int(input()) for x in range (1 , N): print (x+N) for example if the input is 380 my outputs are: 381 382 383 .... etc anyone can help with the flaw of my code?

28th Apr 2021, 6:10 PM
Mwsdo
Mwsdo - avatar
8 Answers
+ 4
N = int(input()) #your code goes here sum = 0 numbers = range(1,N + 1) for x in numbers: sum += x print(sum) Try this code
5th Nov 2021, 9:33 PM
Rahinatu Ako Husnah
Rahinatu Ako Husnah  - avatar
+ 2
print(sum(range(0, N+1)))
21st May 2021, 5:29 PM
Neha
+ 1
For example: for x in range (1, 100): print (x+100) This code will just add the N number to the iterator (x). You can do something like: y=0 for x in range (1, 100): y+=x print (y) Explanation: this will keep adding the numbers to 'y' until N is reached. Then it'll print the final one.
28th Apr 2021, 6:22 PM
M Umer
M Umer - avatar
+ 1
Try this 👇👇👇 N = int(input()) print(N*(N+1)//2)
29th Apr 2021, 1:30 PM
Jackson Kairani Maina
Jackson Kairani Maina - avatar
0
Or you can try using the sum() function. N = int(input()) N+=1 num = list(range(N)) total = sum(num) print(total)
10th May 2021, 12:26 PM
Abdulsamad
0
N = int(input()) count = N x = range(1, N +1) for i in x: N = i + N print(N - count)
18th May 2021, 8:09 AM
Ислам Алб
Ислам Алб - avatar
0
This code works x = 358 * (358+1) / 2 print(int(x)) But as soon as I answer the 2nd test, it counts the first one as incorrect so I’m not able to move onto the third. Is this happening for anyone else? Am I doing something wrong?
4th Dec 2021, 7:56 PM
Taylor
- 2
CONGRATS your are the 1000th person who asks this queston. You won a personal class: sololearn for lazy persons. look here: https://code.sololearn.com/W0os7xWeVOGx/?ref=app now... that was fun. but problems like this are predestinated for searchbar. Please try to become familiar with it.
28th Apr 2021, 7:22 PM
Oma Falk
Oma Falk - avatar