[Tutor] Python and Delphi/Help Function
alan.gauld@bt.com
alan.gauld@bt.com
Fri Apr 4 02:22:02 2003
> >>>help(tuple) in the Windows interpreter just gives me an
> error message. (NameError)
>
> I currently have 2.2.2 on linux and 2.1.2 on windows.
> any comments here Alan?
Install 222 on windows! :-)
Seriously, look up help in the docs (the slow way!).
I think in versions before 2.2.x you had to import help before using it.
Something like:
>>> from help import help
>>> help (foo)
But its been so long I can't recall for sure...
Alan G