learnpython.org - an online interactive Python tutorial

Chris Angelico rosuav at gmail.com
Thu Apr 21 00:07:09 EDT 2011


On Thu, Apr 21, 2011 at 3:15 AM, Ron <ron.reiter at gmail.com> wrote:
> Hey everyone.
>
> I've written an online interactive Python tutorial atop Google App Engine: http://www.learnpython.org.

That looks very handy! And I notice you've protected yourself by
running it in a sandbox:


import time
time.sleep(3)

Traceback (most recent call last):
  File "/base/data/home/apps/learnpythoneasy/1.349862757547785986/main.py",
line 93, in post
    exec(cmd, safe_globals)
  File "<string>", line 1, in <module>
TypeError: 'NoneType' object is not callable

hehe

Quite a few people on Threshold RPG have spoken to me about learning
programming, and I usually point them to Python or Pike; I think this
site will be where I start pointing people. Looks good!

ChrisA



More information about the Python-list mailing list