<div dir="ltr"><br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>Our schools in Portland (both public and private) seem to favor using MIT Scratch before introducing a lexical language, if  <br></div></div></div></div></blockquote><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div></div><div>The Martian Math one (appended) is deliberately way above their reading level but the challenge was simply to take printed sheets with the source code and match them with the corresponding applications.  Connect the dots, so to speak.  <br><br></div></div></div></div></blockquote><div><br></div><div>The code below will not run in Python3 as it's cut and paste from the Codesters environment, which some new modules (sprites, stage...) to __builtins__<br><br></div><div>It's still Python though.<br><br></div><div>"""<br>I have one baseball and want to completely surround it with others.<br>One way: put six around the center one on a table, then three on<br>top, three on the bottom. With real baseballs, this would be <br>difficult.<br><br>To see an animation of what I'm talking about, check here:<br><a href="http://www.4dsolutions.net/ocn/graphics/cubanim.gif">http://www.4dsolutions.net/ocn/graphics/cubanim.gif</a><br><br>For a lot more on the mathematics, check here:<br><a href="http://oeis.org/A005901">http://oeis.org/A005901</a><br>"""<br>stage.set_background("mars")<br>sprite = codesters.Sprite("person10")<br>sprite.go_to(0, -100)<br>sprite.set_say_color("white") # for speaking<br><br>def shell(n):<br>    """<br>    input n should be a non-negative integer<br>    says how many balls in any layer<br>    """<br>    if (not isinstance(n, int)) or n < 0:<br>        raise TypeError # signals we're done!<br>    if n == 0:<br>        return 1 # the central ball<br>    return 10 * n * n + 2  # otherwise, if n > 0<br><br># put in a negative number to stop<br>while True:  # loop until TypeError is raised by user  <br>    try:<br>        guess = int(sprite.ask("What layer number? (-1 to quit): >"))<br>        how_many = shell(guess)<br>        sprite.say("That layer has " + str(how_many) + " balls in it.")<br>        stage.wait(3)<br>        <br>    except TypeError:<br>        sprite.say("OK! Thanks for playing.")<br>        stage.wait(2)<br>        break<br><br>sprite.say("Bye!")<br><br><br></div></div></div></div>