[Tutor] python 3.4 documentation

Steven D'Aprano steve at pearwood.info
Mon Jun 15 05:49:44 CEST 2015


On Sun, Jun 14, 2015 at 11:56:15AM -0700, Alex Kleider wrote:
> I'm using python 3.4 on an ubuntu 14.4 LTS OS and frequently find myself 
> 'off line'.

The Python interactive interpreter comes with a powerful interactive 
help system. At the Python prompt, you can enter:

help()

help("keyword")  # e.g. "raise"

help(any_object)


to get help and documentation.


-- 
Steve


More information about the Tutor mailing list