How to Get a Substring From a String in Python
In Python, Strings are arrays of bytes representing Unicode characters. It's possible to access individual characters of a string by using array-like indexing . Like an array data type that has items that correspond to an index number , each of a string's characters also correspond to an index number, starting with the index number 0.
Python substring
Python has no substring methods like substring() or substr(). Instead, we use slice syntax to get parts of existing strings. Python slicing is a computationally fast way to methodically access parts of your data. The colons (:) in subscript notation make slice notation - which has the arguments, start, stop and step . It follows this template:
- Parameters are enclosed in the square brackets.
- Parameters are separated by colon.
- start - Starting index of string, Default is 0.
- end - End index of string which is not inclusive .
- step - An integer number specifying the step of the slicing. Default is 1.
How Indexing Works
You can make any of these positive or negative numbers for indexing. The meaning of the positive numbers is straightforward (from start), but for negative numbers, just like indexes in Python, you count backwards from the end for the start and stop, and for the step (optional), you simply decrement your index.

Python substring examples
Get all characters of the string
output
End index only
output
Start index only

No Indexes specified
output
How to get the first part from a string
output
Get last part from a string

Get first character from a string
output
Get last character from a string
output
Substring from right side of the string
You may also get the substring from the right side of the string. A negative index means that you start counting from the end of the string(from right to left) instead of the beginning. Index [-1] represents the last character of the string, [-2] represents the second to last character.
output
How to get the last 9 character from Python string
output
Get a substring which contains all characters except the last 10 characters
output
Step in Python substring
The third parameter specifies the step , which refers to how many characters to move forward after the first character is retrieved from the string. Python defaults to the step of 1, so that every character between two index numbers is retrieved.
Add step 1
output
Here, we get the same results by including a third parameter with a step of 1.
Get every other character from a python string
Change step to 2
output
Here you can see, you get the every other character from python string .
Change step to 3
output
Reverse a string in Python
