show/hide this revision's text 3 Added example back; edited body; edited body; edited body; edited body; edited body

There is also web based interpreters for Python:

http://try-python.mired.org/

And for Ruby:

http://tryruby.hobix.com/

Example for the Python online interpreter:

Python 2.5.2 (r252:60911, May 29 2008, 09:50:36) [C] on sunos5
Type "help", "copyright", "credits", or "license" for more information.
>>> total=0
>>> for a in range(32,288):
...    total = total + str(a).count('6')
... 
>>> total
56
show/hide this revision's text 2 Removed wrong example
show/hide this revision's text 1

There is also web based interpreters for Python:

http://try-python.mired.org/

And for Ruby:

http://tryruby.hobix.com/