Post

@PythonPr 3 Because the print command is outside the while loop and will only print the final product of that loop.
English

@PythonPr 3,
2 is < 3, which means there is another run through the loop.
Then it ends through 3 < 3, which is false and prints the result.
English

@PythonPr 2 then 3. the increment runs before print, which is the whole trick
English



























