
-----------------------------------
orz
Sat Oct 11, 2008 1:15 am

string methods definitions
-----------------------------------
just wondering, is there some way i can find out the definitions of string (or other) methods functions that are built-in for python? say, the definition for len() etc

-----------------------------------
wtd
Sat Oct 11, 2008 1:36 am

RE:string methods definitions
-----------------------------------
The "len" function does not act exclusively on strings.

Also...  try:

help(len)
