On Fri, 7 Dec 2001, John Hunter wrote: > >>>>> "tack" == tack <[EMAIL PROTECTED]> writes: > > tack> in any case, I hope it's a good book. i was going through > tack> python tutorials on python.org yesterday, and it was the > tack> most unhelpful language tutorial I ever read. > > If you are a programmer and know at least one OO language well, I > recommend David Beazley's book 'Python: Essential Reference' from New > Riders.
Also--there's a great documentation tool in Python 2.1-- pydoc. You can use it from the command line, or inside the interactive interpreter, or you can generate HTML documentation. The coolest feature though, is firing up pydoc as a web server: for example, $ pydoc -p 8100 and then pointing your browser at http://localhost:8100/ fun. phil _______________________________________________ Bits mailing list [EMAIL PROTECTED] http://www.sugoi.org/mailman/listinfo/bits
