Home >Backend Development >Python Tutorial >How Do I Extract Substrings in Python Using Slicing?

How Do I Extract Substrings in Python Using Slicing?

Barbara Streisand
Barbara StreisandOriginal
2024-12-11 13:28:11501browse

How Do I Extract Substrings in Python Using Slicing?

Getting Substrings in Python

How do you extract a portion of a string in Python? The answer lies in the language's powerful string slicing feature.

String slicing allows you to obtain a substring by specifying the starting and ending indices using square brackets. By default, the first character of the string has an index of 0.

Syntax:

string[start:end]

Options:

  • Omitting the start index: Starts from the beginning of the string.
  • Omitting the end index: Extracts to the end of the string.

Examples:

>>> x = "Hello World!"
>>> x[2:]  # From character 3 to the end
'llo World!'
>>> x[:2]  # From the start to character 2
'He'
>>> x[:-2]  # From the start to 2 characters before the end
'Hello Worl'
>>> x[-2:]  # From 2 characters before the end to the end
'd!'
>>> x[2:-2]  # From character 3 to 2 characters before the end
'llo Worl'

This concept is known as "slicing" in Python and extends beyond strings. Refer to the documentation for a comprehensive explanation.

The above is the detailed content of How Do I Extract Substrings in Python Using Slicing?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn