Python API

David M. Cook davecook at nowhere.net
Fri Sep 19 19:22:48 EDT 2003


In article <pan.2003.09.19.22.10.30.395537 at cornell.edu>, RR wrote:
> Hello, where is nice site that would have python API documentation?
> In particular I am trying to find documentation on the function
> string.find

In addition to the library docs, you can also get help in interactive mode

>>> help(''.find) # help on the find method
>>> import string; help(string) # help on the string module

Dave Cook




More information about the Python-list mailing list