Computer Science Canada

string methods definitions

Author:  orz [ Sat Oct 11, 2008 1:15 am ]
Post subject:  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

Author:  wtd [ Sat Oct 11, 2008 1:36 am ]
Post subject:  RE:string methods definitions

The "len" function does not act exclusively on strings.

Also... try:

code:
help(len)


: