Reputation: 118782
I believe that I once saw a website that is like an online Python console. Does anyone know of such a website?
Upvotes: 15
Views: 9189
Reputation: 119806
This is one I know of:
There's also Lord of the REPL's:
Python on repl.it:
Upvotes: 12
Reputation: 27575
This one is very interesting, it has an interactive shell AND a script editing area:
Upvotes: 4
Reputation: 100766
IronPython (using Silverlight or Moonlight 2): http://www.trypython.org/
Upvotes: 4
Reputation: 4309
While not really a "console", skulpt.org runs python code client-side with no plugins or anything, which makes it a lot faster than a server-side prompt. For server side and a more traditional shell I found this: http://shell.appspot.com/.
Upvotes: 11