Explain indexing and slicing operation in sequences



Explain indexing and slicing operation in sequences..

Answer / 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

More Python Interview Questions

What static means?

0 Answers  


What is the input function in python?

0 Answers  


How will you convert a string to all lowercase?

0 Answers  


What is python with statement?

0 Answers  


Explain how you can minimize the memcached server outages in your python development?

0 Answers  






When does dictionary is used instead of a list in python?

0 Answers  


Can we use else with for loop in python?

0 Answers  


What is a sequence in python?

0 Answers  


What is a generator in python?

0 Answers  


What ais the replacements for switch statement in python?

0 Answers  


What is the process of compilation and linking in python?

1 Answers  


What is python's slice notation?

0 Answers  


Categories