String Slicing in Python

December 21, 2022

Introduction

Python is an excellent programming language for manipulating textual data. Since Python treats strings as a character array, string slicing is a technique in Python that allows extracting substrings, which is handy when working with long strings.

This article shows different ways to slice a string and some valuable tricks when working with slicing.

String Slicing in Python

Prerequisites

  • Python 3 installed.
  • A text editor or IDE to write the code.
  • A terminal or IDE to run the code.

Python Slicing Methods

Python offers two ways to slice strings:

  • The slice() method splits the array according to the provided range parameters.
  • The array slicing notation performs the same task as the <strong>slice()</strong> method, but uses different notation.

In both cases, the returned value is a character range. Every string behaves as a character array whose elements are accessible through indexes. There are two ways to access array elements in Python:

  • Normal indexing accesses characters from the first to the last (starting at 0).
  • Negative indexing accesses characters in reverse order (starting at -1).

Below is a detailed explanation of both methods and how they behave.

Method 1: Using slice()

Python's slice() method is a built-in function for extracting a specific string part. The method works on any array-like object, such as a string, list, or tuple.

The syntax is:

slice(start,stop,step)

The arguments are indices with the following behavior:

  • The start value is the index of the first character in the subsequence. The default value is 0 or None.
  • The stop value is the index of the first character not included in the sequence. The default value is None.
  • The final step value is the number of characters to skip between the start and stop indices. The default value is 1 or None.

The method returns an object containing the substring character array.

Use the slice() method to do the following:

  • Extract a portion of a string with a step. Provide the start, stop, and step values like in the following example code:
quote = "There's no place like home."
print(quote[slice(0,-1,2)])
Python slice string three arguments output

The method extracts every other character from the beginning up to (but not including) the last character.

  • Define a range for a substring. Use two values to do so:
quote = "There's no place like home."
print(quote[slice(5,10)])
Python slice string two arguments output

The slice() method fetches a substring from index five to ten, while the step value defaults to 1.

  • Cut off a string at a particular index. Provide a single value, which represents the final index:
quote = "There's no place like home."
print(quote[slice(5)])
print(quote[slice(-5)])
Python slice string one argument output

Positive indexing shows the first five characters, while negative indexing shows up to the last five.

  • Reverse a string by using a negative step value. For example:
quote = "There's no place like home."
print(quote[slice(None,None,-1)])
Python slice string none argument reverse output

The start and stop fields use default values because of the None parameter, while the step value is -1. The code reads the string backward and reverses the character order.

Method 2: Using Array Slicing [::]

Python uses the array slicing syntax to perform string slicing differently. Array slicing calls the slice() method and performs the same task. However, the syntax is more flexible. Instead of writing None for unstated indices, the field is blank to indicate default values.

Note: Think of array slicing as a range. A single index fetches the character at the provided index, while a range slices the string according to the stated range.

The syntax for array slicing is:

string[start:stop:step]

Use array slicing to perform the following tasks:

  • Extract a substring with a step from a string. Provide all three values like in the following example:
quote = "There's no place like home."
print(quote[3:-1:2])
Python string array slicing three arguments output

The slicing starts the substring at the fourth character and goes to the end, printing every other character.

  • Extract a substring from a string. Use the start and stop values to define the range. For example:
quote = "There's no place like home."
print(quote[3:10])
Python string array slicing two arguments output

The code fetches a substring starting at index three up to index ten. The step value defaults to 1 when left out.

  • Print the last characters of a string. Leave any field blank to use default values. For example:
quote = "There's no place like home."
print(quote[-5:])
Python string array slicing one argument output

The slicing starts at the fifth to the last character and goes to the end. The step value defaults to 1 when left out.

Note: Learn how to merge two or more strings by referring to our guide How to Append a String in Python.

Conclusion

After going through the examples in this guide, you know how to slice a string. By providing a start, stop, and step value, string slicing allows extracting various values from the character array.

Slicing is a valuable tool for Python programmers working with string data types.

Next, learn how to use list comprehension in Python.

Was this article helpful?
YesNo
Milica Dancuk
Milica Dancuk is a technical writer at phoenixNAP who is passionate about programming. Her background in Electrical Engineering and Computing combined with her teaching experience give her the ability to easily explain complex technical concepts through her content.
Next you should read
How to Substring a String in Python
December 13, 2022

Need to take out a substring from a string? Python provides all kinds of methods to work with substrings. Learn how to create and manage substrings in Python through...
Read more
How to PrettyPrint a JSON File with Python?
November 15, 2022

Learn how you can use Python to PrettyPrint a JSON file. PrettyPrinting helps reformat the JSON file into a readable and...
Read more
File Handling in Python: Create, Open, Append, Read, Write
February 24, 2022

Working with files is part of everyday tasks in programming. This tutorial teaches you elementary file...
Read more
Handling Missing Data in Python: Causes and Solutions
July 1, 2021

Some machine learning algorithms won't work with missing data. Learn how to discover if your dataset has missing...
Read more