Python List Slicing with Step-by-Step Examples

 

python list slicing

In this blog, we'll explore Python list slicing through step-by-step examples, covering the basics and some advanced techniques. Python lists are versatile data structures that allow you to store and manipulate collections of data. One of the most powerful features of lists is slicing.


What is Python List Slicing?



Before we dive into the intricacies of list slicing, let's clarify what it is. In Python, a List slicing is a way to extract a portion of a list by specifying a range of indices. It allows you to create a new list by specifying a starting point, an ending point, and an optional step value. This powerful technique provides flexibility and precision when working with lists, and it can save you time and effort.The syntax for slicing is as follows:


new_list = old_list[start:end]


Here's the each part of the syntax means:

  • old_list: The original list you want to slice.
  • start: The index from which you want to start the slice. 
  • end: The index where you want to end the slice.


Read also:



Basic List Slicing

Example 1: Slice a Range of Elements



fruits = ['apple', 'banana', 'cherry', 'date', 'elderberry']

# Slice elements from index 1 to 3 (inclusive of 1, exclusive of 3)
sliced_fruits = fruits[1:3]

print(sliced_fruits)  # Output: ['banana', 'cherry']



In this example, we sliced the list fruits from index 1 to 3, which includes elements at indices 1 and 2 but excludes the element at index 3.


fruits = ['apple', 'banana', 'cherry', 'date', 'elderberry']


In this line of code, we create a Python list called fruits containing five string elements: 'apple', 'banana', 'cherry', 'date', and 'elderberry'.


IndexFruit
0apple
1banana
2cherry
3date
4elderberry


sliced_fruits = fruits[1:3]


Here, we're performing list slicing on the fruits list:

"fruits[1:3]" specifies that we want to create a new list called sliced_fruits containing elements from index 1 (inclusive) up to index 3 (exclusive) of the fruits list. In other words, it extracts elements at indices 1 and 2 from the original list. After this line of code, the sliced_fruits list will contain ['banana', 'cherry'].


print(sliced_fruits)  # Output: ['banana', 'cherry']


IndexFruit
1banana
2cherry


Finally, we use the print function to display the contents of the sliced_fruits list. The output will be ['banana', 'cherry'], which are the elements extracted from the fruits list using list slicing.


Example 2: Slice from the Beginning



colors = ['red', 'green', 'blue', 'yellow', 'orange']

# Slice elements from the beginning up to index 3 (exclusive of 3)
sliced_colors = colors[:3]

print(sliced_colors)  # Output: ['red', 'green', 'blue']


Here, we omitted the start index, which defaults to 0, so it sliced from the beginning of the list up to index 3
 
IndexColors
0red
1green
2blue
3yellow
4orange


Here, we're performing list slicing on the colors list: 

"colors[:3]" specifies that we want to create a new list called sliced_colors containing elements from the beginning (index 0) up to index 3 (exclusive) of the colors list. In other words, it extracts elements at indices 0, 1, and 2 from the original list. 


IndexColors
0red
1green
2blue



After this line of code, the sliced_colors list will contain ['red', 'green', 'blue']

The output will be ['red', 'green', 'blue'], which are the elements extracted from the colors list using list slicing.


Example 3: Slice to the End




numbers = [1, 2, 3, 4, 5]
sliced_numbers = numbers[2:]

print(sliced_numbers)  # Output: [3, 4, 5]


In this case, we omitted the end index, which defaults to the length of the list, so it sliced from index 2 to the end of the list.


Advanced List Slicing



Example 4: Using Negative Indices



using negative indices to count elements from the end of the list. For example:



seasons = ['spring', 'summer', 'autumn', 'winter']

# Slice elements from the last element to the second-to-last element
sliced_seasons = seasons[-2:-1]

print(sliced_seasons)  # Output: ['autumn']



IndexSeason
-4spring
-3summer
-2autumn
-1winter


For easy analysis visual:


IndexSeason
-1winter
-2autumn
-3summer
-4spring


In this line of code, we create a Python list called seasons containing four string elements: 'spring', 'summer', 'autumn', and 'winter'.


sliced_seasons = seasons[-2:-1]


"seasons[-2:-1]" specifies that we want to create a new list called sliced_seasons containing elements from the second-to-last element (index -2) up to the last element (index -1) of the seasons list. In other words, it extracts the element at index -2, which is 'autumn'.


print(sliced_seasons)  # Output: ['autumn']


The output will be ['autumn'], which is the element extracted from the seasons list using list slicing.


Example 5: Slicing with a Step



we can also specify a step value to skip elements when slicing. Here's an example:


numbers = [10, 11,12, 13, 14, 15, 16, 17, 18, 19]

# Slice elements with a step of 2 (get every second element)
sliced_numbers = numbers[1:9:2]

print(sliced_numbers) #output [11, 13, 15, 17]



In this example, we started at index 1, ended at index 9, and used a step of 2 to get every second element.

"numbers[1:9:2]" specifies that we want to create a new list called sliced_numbers containing elements from index 1 (inclusive) up to index 9 (exclusive) of the numbers list, with a step value of 2.


Here's how it works:


  • It starts at index 1, which corresponds to the element 11.
  • It then skips one element (step value of 2) and includes the element at index 3, which is 13.
  • It continues this pattern, including elements at indices 5 (15) and 7 (17).


The output will be [11, 13, 15, 17], which are the elements extracted from the numbers list using list slicing with a step of 2.


Reversing a List



Python's list slicing makes it easy to reverse a list. Here's how you can do it:



colors = ['red', 'green', 'blue', 'yellow', 'orange']

# Slice elements from the beginning up to index 3 (exclusive of 3)
reversed_list_colors = colors[::-3]

print(reversed_list_colors)  # Output: ['orange', 'green']


IndexColors
0red
1green
2blue
3yellow
4orange



In this line of code, we create a Python list called colors containing five string elements: 'red', 'green', 'blue', 'yellow', and 'orange'.


reversed_list_colors = colors[::-3]


"colors[::-3]" specifies that we want to create a new list called reversed_list_colors by starting from the end of the list (index -1) and moving backward with a step value of -3.


Here's how it works:


  • It starts at the end of the list, which corresponds to the element 'orange'.
  • It then moves backward by three positions and includes the element at index 1, which is 'green'.
  • It continues moving backward by three positions and includes the element at index -1 (which is the same as index 4), which is 'orange' again.


After this line of code, the reversed_list_colors list will contain ['orange', 'green'].


print(reversed_list_colors)  # Output: ['orange', 'green']


The output will be ['orange', 'green'], which are the elements extracted from the colors list using list slicing with a negative step of -3.


Splitting a List into Two



Let's say you have a list of names, and you want to split it into two separate lists, one for first names and another for last names:


full_names = ["chandra kumar", "ram kumar", "priya devi"]
first_names = [name.split()[0] for name in full_names]
last_names = [name.split()[1] for name in full_names]

print(first_names, last_names) #output ['chandra', 'ram', 'priya'] ['kumar', 'kumar', 'devi']


In this line of code, we create a Python list called full_names containing three strings, each representing a person's full name.


first_names = [name.split()[0] for name in full_names]


Here, we're using a list comprehension to create a new list called first_names. List comprehensions are a concise way to create lists in Python. 

Here's how it works: 

  • "name.split()" is applied to each element (full name) in the full_names list. The "split()" method splits a string into a list of substrings based on whitespace.
  • "[0]" at the end selects the first element (the first name) from the resulting list of substrings.
  • So, for each full name in full_names, this list comprehension extracts the first name and stores it in the first_names list. 

After this line of code, the first_names list will contain ['chandra', 'ram', 'priya'].


last_names = [name.split()[1] for name in full_names]


Similar to the previous line, here we create another list called last_names. This time, we extract the last name from each full name using list comprehension:


  • "name.split()" is applied to each element (full name) in the full_names list.
  • "[1]" at the end selects the second element (the last name) from the resulting list of substrings.
  • So, for each full name in full_names, this list comprehension extracts the last name and stores it in the last_names list.


After this line of code, the last_names list will contain ['kumar', 'kumar', 'devi'].


print(first_names, last_names)


Finally, we use the print function to display the contents of both the first_names and last_names lists. The output will be:


['chandra', 'ram', 'priya'] ['kumar', 'kumar', 'devi']


This output shows that we've successfully split the full names into first names and last names using list comprehensions and the "split()" method.


Conclusion



Python list slicing is a powerful tool for working with lists. It allows you to extract specific portions of a list easily and efficiently. By understanding the basics and experimenting with advanced techniques, you can harness the full potential of list slicing in your Python programs.


Previous Post Next Post