Hi,<br><br>I am still working my way through my 'Python for absolute beginners book' and have hit a brick wall with one of the end of chapter exercises.<br><br>The challenge says:<br><br><span style="font-style: italic;">Improve the function ask_number() so that the function can be called with a step value. Make the default value of step 1.
</span><br><br>The function looks like this:<br><br>def ask_number(question, low, high):<br>&nbsp;&nbsp;&nbsp; &quot;&quot;&quot;Ask for a number within the range&quot;&quot;&quot;<br>&nbsp;&nbsp;&nbsp; response = None<br>&nbsp;&nbsp;&nbsp; while response not in range(low, high):
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; response =&nbsp; int(raw_input(question))<br>&nbsp;&nbsp;&nbsp; return response<br clear="all"><br>The author has not eluded to 'step values' in anyway that I can see in the proceeding chapters!<br><br>HELP!<br><br>-- <br>Best Regards
<br><br>Jon Moore