Why I can't get the total of the odd nunber? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why I can't get the total of the odd nunber?

https://code.sololearn.com/c312m1EaD2UI/?ref=app Why the result always zero??

16th Oct 2020, 8:45 AM
Joe Ma
Joe Ma - avatar
6 Answers
+ 9
It is ok to use the while loop, but it is much easier to do this task with a for loop. With a for loop, you dont't have to care about the length of the iterable and you don't need to use a counter variable. items = [23, 555, 666, 123, 128, 4242, 990] sum_ = 0 for num in items: if num % 2 != 0: sum_ += num print(sum_) # or with a comprehension: print(sum([i for i in items if i % 2 != 0]))
16th Oct 2020, 11:34 AM
Lothar
Lothar - avatar
+ 2
Joe Ma items = [23, 555, 666, 123, 128, 4242, 990] sum = 0 n = 0 while n < len(items): num = items[n] n+=1 if num % 2 == 0: continue else: sum += num print(sum)
16th Oct 2020, 9:05 AM
˜”*°•.˜”*°• Mohan 333 •°*”˜.•°*”˜
˜”*°•.˜”*°• Mohan 333 •°*”˜.•°*”˜ - avatar
16th Oct 2020, 8:55 AM
Muhammad Galhoum
Muhammad Galhoum - avatar
+ 1
sum = 0 n = 0 while n < len(items): num = items[n] if num % 2 != 0: sum += num n+=1 print(sum)
16th Oct 2020, 9:02 AM
Abhay
Abhay - avatar
+ 1
Your num doesn't change at all. It remains to be the items[0] for the whole loop.
16th Oct 2020, 9:31 AM
你知道規則,我也是
你知道規則,我也是 - avatar
0
And move the else statement to the left of the code then it is called.
16th Oct 2020, 10:04 AM
The_Fox
The_Fox - avatar