There is also web based interpreters for Python:
And for Ruby:
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
