Open In App

How To Reverse A List In Python Using Slicing

Last Updated : 20 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

In Python, list slicing is a common practice and it is the most used technique for programmers to solve efficient problems. In this article, we will see how we can reverse a list using slicing in Python.

Reverse a List Using Slicing in Python

Below are some of the examples by which we can perform reversing a list using slicing in Python:

Reversing A List In Python Using Slicing

In Python, we can reverse a list using the negative integer as the Index Jump argument, leaving the Initial and end blank. We must choose the Initial and End values according to a reversed list if the Index Jump value is negative. In this code first, we employ [::-1] to reverse the original list, producing a reversed copy.

Python3




# Initialize list
List = ['Geeks', 4, 'geeks !', 'for', 'geeks2']
 
# Show original list
print("Original List:\n", List)
 
# Display sliced list in reverse order
print("\nSliced Lists: ")
print(List[::-1])  # Reverse the list


Output

Original List:
 ['Geeks', 4, 'geeks !', 'for', 'geeks2']

Sliced Lists: 
['geeks2', 'for', 'geeks !', 4, 'Geeks']

Reversing a List in Steps Using Slicing

In this example, instead of reversing all elements at once, we reverse it in steps of two. This is done by slicing with a step value of -2 ([::-2]) to reverse the list in steps of two, resulting in [9, 7, 5, 3, 1].

Python3




# Initialize  list
original_list = [1, 2, 3, 4, 5, 6, 7, 8, 9]
 
# Display the original list
reversed_list_in_steps = original_list[::-2]
 
# Display the reversed list
print("Reversed List in Steps:", reversed_list_in_steps)


Output

Reversed List in Steps: [9, 7, 5, 3, 1]

Reversing List Elements in Pairs Using Slicing

In the example we first reverse the entire list ([::-1]) and then use slicing to extract elements in pairs, reversing them ([::2] and [1::2]). Finally, we concatenate these two sliced lists to form the reversed list with elements reversed in pairs.

Python3




# Initialize  list
original_list = [1, 2, 3, 4, 5, 6, 7, 8]
 
# Display the original list
reversed_pairs = original_list[::-1][::2] + original_list[::-1][1::2]
 
# Display the reversed list
print("Reversed List in Pairs:", reversed_pairs)


Output

Reversed List in Pairs: [8, 6, 4, 2, 7, 5, 3, 1]

Reverse a Sublist Using Slicing in Python

In this code, we reverse a sublist within the original list. Here, the code slices the sublist using [3:7], capturing the elements from index 3 to index 6. Then, by applying slicing with a step value of -1, the sublist is reversed.

Python3




# Initialize  list
original_list = [1, 2, 3, 4, 5, 6, 7, 8, 9]
 
# Display the original list
print("Original List:", original_list)
 
# Display the reversed list
print("Reversed Sublist:", original_list[3:7][::-1])


Output

Original List: [1, 2, 3, 4, 5, 6, 7, 8, 9]
Reversed Sublist: [7, 6, 5, 4]

Conclusion

Reversing a list using slicing in Python provides a concise and readable solution. The flexibility of slicing allows for customization, such as reversing only part of a list or creating a reversed copy. While other methods, like using the reverse() method, exist, slicing stands out for its simplicity and versatility in handling various list manipulation scenarios. Choose the method that best fits your specific requirements and coding style.



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads