While in the Python Interpretor (not in the Help Mode) use help with the function or method name as a parameter:
>>> help(len)
The result will be:
Help on built-in function len in module __builtin__:
len(...)
len(object) -> integer
Return the number of items of a sequence or mapping.
(END)
Use „q“ to leave this mode!