Thursday, September 20, 2007

Slice...

Slice notation is one of the powerful feature in python using which can be used for operations like substr, str_reverse etc etc.

The slice notation is really powerful for strings. I'm not very sure whether it can be used for other data types.

For a string, it can be used as variable_name[start:end:step]

If the start and end are equal, then a null string is returned.
If step is positive and start is greater than the end, then a null string is returned.
If step is negative and start is lesser than the end, then a null string is returned.

Ok. If you are confused about start, end, step, equal, greater. lesser, positive and negative, don't worry. Things are explained very clearly after this. :-)

First few lines about the step. If the step is positive, then the direction in which the input string is scanned is forward direction. If the step is negative, then the string is scanned in reverse direction. So now i hope you understand why start must be less than end if step is positive. For the same reason, start must be less than end if the step is negative.

Let us see a simple slice example.

>>> i = "Hello World"
>>> i[2:10:1]
'llo Worl'

So it's very clear that the basic action of the slice notation is to return a sub string.
In the above example, it returns the characters from the string whose position are equal to and greater than start and less than end.

Note :: The character at position end is not returned.
In the above example i[10] = "d" is not returned.

If the start is not specified and step is positive, then the default value is 0
If the end is not specified and step is positive, then the default value is len(string).
If the start is not specified and step is negative then the default value is len(string).
If the end is not specified and step is negative, then the default value is NOT 0, coz in this case even 0th character is returned.
If the step is not specified, then the default value is 1


So i[::] prints the entire string. In fact, in most cases the step is not specified. So i[:] returns the entire string.

>>> i = "Hello World"
>>> i[::]
'Hello World'
>>> i[:]
'Hello World'
>>>

Slice notation can also take negative values.
If the start value is negative, then the last start characters are returned.
If the end value is negative, then the last end characters are not returned.

So if both start and end values are negative, then the absolute value of start must be greater than the absolute value of end. Else a null string will be returned.

>>> i = "Hello World"
>>> i[-5:] #Start is -ve. So last 5 characters
'World'
>>> i[:-5] #End is -ve. So everything except last 5 characters
'Hello '
>>> i[-8:-3] #Start is -8. =>"lo World". In this don't include last 3 characters => "lo Wo"
'lo Wo'
>>>

The real fun is when even step is negative.
If the start is greater than the end, then the step must be -ve, which makes the string to be returned as reverse.

So consider this example.
>>> i = "Hello World"
>>> i[8:4:-1]
'roW '
>>>

In the above example, i[8:4] part refers to i[8] and i[4] positions and since the step is negative, now it returns characters at i[8], i[7], i[6], i[5]. Note that even here i[4] is not returned.

Finally, if step is something other than 1, then every stepth character is returned. For example
>>> i = "Hello World"
>>> i[::2]
'HloWrd'
>>> i[::-2]
'drWolH'
>>>

Any idea why i wrote this post.

Saw this small snippet for string reverse in python

>>> a = "Hello World"
>>> print a[::-1]
dlroW olleH
>>>

Sweet and cute na. ;-)

To know more about slice notation you refer to the python python doc.

Sunday, September 09, 2007

Potato Guy ...


I wasn't sure why people celebrate shutdown day and all. The whole idea looked stupid. :P But it was not so.

Our college network was shutdown yesterday. No Gmail. No Orkut. No Spider. No Delta. Nothing :P
All i had was 2 or 3 computers with Linux and Windows :). Many many thanks to all the Gnome and KDE games, the day wasn't that boring. In fact, i don't mind having shutdown day once in a week :) :) :)
The good thing about shutdown day is that even if you want to work, you can't. :-). So you don't feel bad or guilty about not working for one whole day. :-) :-) :-)

Some of the nice games which are worth playing are
1. Attax
2. KAtomic (Even those who don't like chemistry might end up playing this for hours :) )
3. Kolf
4. Potato Guy
5. Iagno