python online help?
Gerrit Holl
gerrit.holl at pobox.com
Sat Feb 19 03:44:52 EST 2000
More information about the Python-list mailing list
Sat Feb 19 03:44:52 EST 2000
- Previous message (by thread): python online help?
- Next message (by thread): Continuations and threads (was Re: Iterators & generators)
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Benyang Tang wrote on 950873162: > > Is there a online help in python? Say something like > help print > would give document of the print command. Callable objects have "docstrings": >>> print abs.__doc__ abs(number) -> number Return the absolute value of the argument. >>> print tuple.__doc__ tuple(sequence) -> list Return a tuple whose items are the same as those of the argument sequence. If the argument is a tuple, the return value is the same object. Modules also have docstrings, statements have not. regards, Gerrit. -- cat: /home/gerrit/.signature: No such quote or joke
- Previous message (by thread): python online help?
- Next message (by thread): Continuations and threads (was Re: Iterators & generators)
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list