Sentry Answers>Python>

Python slice notation

Python slice notation

James W.

The ProblemJump To Solution

You’d like to get a subset of a string or array with a single expression. For example, you have the following variables storing some data that you need to manipulate:

Click to Copy
hello_world_string = "Hello World!" num_string = "012345"

The Solution

The Syntax

Since in Python, strings are arrays, we can use the same syntax for both object types.

Slicing segments an array and returns that segment.

In the example below, a string is segmented to return a single word from within the string:

Click to Copy
hello_world_string = "Hello World!" world = hello_world_string[7:12] print(world)

Output:

Click to Copy
World

Indexing

Slicing requires a start and a stop:

Click to Copy
array[start:stop]

The start is the index of the array that you would like the slice to begin with, the stop is the index of the array you would like to stop at.

The value of the array at the stop index is not included in the slice.

Click to Copy
num_string = "012345" zero_to_four = num_string[0:5] print(zero_to_four)

Output:

Click to Copy
01234

If an index is not provided for start, the slice will begin at the start of the array.

If an index is not provided for stop, the slice will end after the end of the array.

Click to Copy
# Returns entire array array[:]

For example:

Click to Copy
num_string = "012345" zero_to_five = num_string[:] print(zero_to_five)

Output:

Click to Copy
012345

Step

Slicing can also use a third value called step:

Click to Copy
array[start:stop:step]

The step designates the manner in which the slice can walk through the array.

Assigning a step of 2 will include values from the array every two “steps”.

In the example below, a string is sliced starting at index 2, stopping when the array is complete, and taking the values at every second step.

Click to Copy
num_string = "0123456" even_nums = num_string[2::2] print(even_nums)

Output:

Click to Copy
246

Negative Indexing

Slicing can use negative indexing. With negative indexing, the last value in an array is -1, the second last is -2, and so on.

For example:

Click to Copy
num_string = "012345" one_two_three = num_string[-5:-2] print(one_two_three)

Output:

Click to Copy
123

Reversing Arrays with Negative Indexing

Use negative indexing to step through an array in reverse.

For example:

Click to Copy
num_string = "012345" reverse_string = num_string[::-1] print(reverse_string)

Output:

Click to Copy
543210
  • Sentry BlogPython Performance Testing: A Comprehensive Guide
  • Sentry BlogLogging in Python: A Developer’s Guide
  • Syntax.fm logo
    Listen to the Syntax Podcast

    Tasty Treats for Web Developers brought to you by Sentry. Web development tips and tricks hosted by Wes Bos and Scott Tolinski

    Listen to Syntax

Loved by over 4 million developers and more than 90,000 organizations worldwide, Sentry provides code-level observability to many of the world’s best-known companies like Disney, Peloton, Cloudflare, Eventbrite, Slack, Supercell, and Rockstar Games. Each month we process billions of exceptions from the most popular products on the internet.

© 2024 • Sentry is a registered Trademark
of Functional Software, Inc.