Sublime Text has a console which can be activated by using Ctrl + `. It exposes a python interpreter. On my machine, it's python 3.3.
>>> import sys
>>> sys.version
'3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:57:17) [MSC v.1600 64 bit (AMD64)]'
However, the help() function does not work which is supposed to be a builtin function in python. Attempting to call it gives this:
Traceback (most recent call last):
File "<string>", line 1, in <module>
NameError: name 'help' is not defined
Is there a way to call help()?