Isn't there a substring(start, end)-function????

Harvey Thomas hst at empolis.co.uk
Wed Aug 6 09:37:45 EDT 2003


Dave wrote:
> Hi all,
> 
> Am I blind, or what? I can't find any quick way to do the following in
> Python:
> 
> substring(beginIndex, endIndex) witch returns the substring between
> beginIndex and endIndex.
> 
> Like:
> text = "If someone attacks you with a banana"
> print text.substring(0,3)
> Should print "If "
> 
> I've found absolutely everything else that I expect from a modern
> programming language, but none of the modules (not even "string"!)
> seems to have what I'm looking for.
> 
> Please tell me I'm blind!
> 
> Dave

There isn't a substring function, because it's not necessary as slices do the job.
The short answer is:

text = "If someone attacks you with a banana"
print text[0:3]

but its explained much more fully in
http://www.python.org/doc/current/tut/node5.html#SECTION005120000000000000000

Harvey

_____________________________________________________________________
This message has been checked for all known viruses by the MessageLabs Virus Scanning Service.





More information about the Python-list mailing list