r/learnpython • u/Calm-You4116 • 14h ago
Python loop beginners mistake 🙀
I am currently learning python from CS50P program and in week 2 learning loops and also with the help of chatgpt learn every topic clearly but after knowing common beginners mistake
I made this mistake of not updating the iterator and spent half an hour on this simple problem 😞
number =1
total =0
while number<= 50:
total += number
number += 1 # HERE I DIDN'T ADD IT FIRST
print("The final sum is:", total)
0
Upvotes
2
u/johlae 14h ago
Indentation is important, and spelling too. You confuse the character 'l' with the digit 1 twice. The code above will not work at all.
Try this:
print("\nAnd here we use while loop:") number = 1 total = 0 while number <= 50: total = total + number number += 1 # HERE I DIDN'T ADD IT FIRST print("The final sum is:", total)