Question
The following code has a logic error. What code for the while loop will fix the error so that the code will loop five times?
count = 1
while count > 6:
print(count, "x", count, "=", count*count)
count +=1
count = 1
while count > 6:
print(count, "x", count, "=", count*count)
count +=1
Answers
There are no human answers yet.
There are no AI answers yet. The ability to request AI answers is coming soon!
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.