I see, learn and rediscover… everyday!
 
Day: <span>September 20, 2007</span>

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 …