Python Documentation?
John Burton
john.burton at jbmail.com
Mon Sep 1 01:51:24 EDT 2003
"Daniel R. Smorey Jr." <smory at ptdprolog.net> wrote in message
news:LQydncwLlNp2UM-iXTWJkA at comcast.com...
> I'm looking for a good place for Python documentation. I'm really lost
> on why it's so hard to find anything when it comes to me looking up a
> particular function in Python. My example would be the split() function
The help within python itsself is a good start.
For your example try
import string
help(string.split)
No need to visit a web site.
More information about the Python-list
mailing list