0
How do I pass python beginner practice for (Continue topic) It seem broken
I tired the solution that was there but it keeps saying no output
4 Answers
+ 2
We cannot help you if we cannot see your code.
Please LINK YOUR CODE and mention the task number.
0
Here it is
0
Look at the head of your while-loop: x is 0 in the beginning, so 0 > 5 is False. You need to write x < 5 so the code in loop is executed.