Hello everyone!<div><br></div><div>In the <a href="http://docs.python.org/2/tutorial/controlflow.html#break-and-continue-statements-and-else-clauses-on-loops">http://docs.python.org/2/tutorial/controlflow.html#break-and-continue-statements-and-else-clauses-on-loops</a> there are two print statements that I think are not correct.</div>

<div>These are:</div><div>- print("Found an even number", num)<br></div><div>- print("Found a number", num)<br></div><div><br></div><div>The output should be:</div><div>>>> Found an even number 2</div>

<div>>>> Found a number 3</div><div><br></div><div>But instead I get:</div><div><div>>>> ('Found an even number', 2)</div><div>>>> ('Found a number', 3)</div></div><div><br></div>

<div><br></div><div>Proposed solution is to delete the parentheses:</div><div>Change</div><div>print("Found an even number", num)</div><div>to</div><div>print "Found an even number", num</div><div><br>

</div><div>That way the output I get matches the expected output</div>