+ 21
Sum of Consecutive Numbers
What's the purpose "N" in this assignment? N = int(input()) sum = 0 #your code goes here for i in range (1, N + 1): sum += i print(sum)
8 Answers
+ 5
N is the input
+ 15
Try thisđđ
N = int(input())
print(N*(N+1)//2)
+ 5
N=int(input())
n = sum(range(N+1))
print(n)
+ 4
N=int(input())
n = sum(range(N+1))
print(n)
Or
N = int(input())
print(N*(N+1)//2)
đđ
Both works perfectly đđ»
+ 2
N = int(input())
#your code goes here
sum = 0
for number in range(N+1):
sum = sum + number
print(sum)
+ 1
N is the name of input variable which stores a value inside it.
0
Mutiat Akobi what does n+1 mean in this code? đ€does this mean: count from zero to one more than the input?
and what is function sum() doing here?
0
Mutiat Akobi N is a variable that has a value of what the user inputs and n +1 means for every input add one simple as that