Explain indexing and slicing operation in sequences
Answer Posted / chaitanya
Different types of sequences in python are strings, Unicode strings, lists, tuples, buffers, and xrange objects
Slicing & indexing operations are salient features of sequence.
indexing operation allows to access a particular item in the sequence directly ( similar to the array/list indexing) and the slicing operation allows to retrieve a part of the sequence.
The slicing operation is used by specifying the name of the sequence followed by an optional pair of numbers separated by a colon within square brackets say S[startno.:stopno].
The startno in the slicing operation indicates the position from where the slice starts and the stopno indicates where the slice will stop at.
If the startno is ommited, Python will start at the beginning of the sequence. If the stopno is ommited, Python will stop at the end of the sequence..
Following code will further explain indexing & slicing operation:
>>> cosmeticList =[‘lipsstick’,’facepowder’,eyeliner’,’blusher’,kajal’]
>>> print “Slicing operation :”,cosmeticList[2:]
Slicing operation :[‘eyeliner’,’blusher’,kajal’]
>>>print “Indexing operation :”,cosmeticList[0]
“Indexing operation :lipsstick
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is an abstract class in python?
What is the difference between Xrange and range?
Which of the following statements create a dictionary? (Multiple correct answers possible)
Explain about multi threading on python?
What is built-in type in python?
Tell me what is pep 8?
What is difference between input and raw_input?
How would you work with numbers other than those in the decimal number system?
Can I learn python without knowing programming?
Name some of the important modules that are available in python.
How to delete a file or folder?
Why we are using a python dictionary?
In python, how do I read a file line-by-line into a list?
How to avoid having class data shared among instances?
What does __name__=='__main__' in python mean?