Ask your own question, for FREE!
Computer Science 21 Online
OpenStudy (turingtest):

Beginner Python help: What does n-=1 do in a while loop?

OpenStudy (turingtest):

num = 5 if num > 2: print(num) num -= 1 print(num) output: 5,4

OpenStudy (turingtest):

I thought num-=1 would subtract one from n each time through the loop, but then why no 3 printed?

OpenStudy (turingtest):

actually by my reasoning if that were true it should print out the 2 as well...

OpenStudy (turingtest):

version 2.7 if that matters

OpenStudy (turingtest):

oh never mind, I think I know

OpenStudy (turingtest):

it's not even a while loop, it's an if clause, so it's only executed once. duh.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!