On Tuesday 19 April 2005 10:58 pm, [EMAIL PROTECTED] wrote:
> Many people I know ask why Python does slicing the way it does.....
>
> Can anyone /please/ give me a good defense/justification???

Here you go, no remembering "+1" or "-1". Also, see the hundreds of other 
times this topic has graced this list.

>>> i = 4
>>> str = "asdfjkl;"
>>> print str[:i]+str[i:]
asdfjkl;

James

-- 
James Stroud
UCLA-DOE Institute for Genomics and Proteomics
Box 951570
Los Angeles, CA 90095

http://www.jamesstroud.com/
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to