Which of the following lines of code would reassign a new value to the condition variable?
These 2 lines of code would both produce the same results:
condition = condition + 1
condition += 1
How did the computer know to stop printing after it printed number 9?
Why didn't the program print the number 10?