Table of Contents
In this tutorial, we will learn about the Python index() method with the help of examples.
The index() method returns the index of a substring inside the string (if found). If the substring is not found, it raises an exception.
Example
text = 'Python is fun'
# find the index of is
result = text.index('is')
print(result)
# Output: 7
1. index() Syntax
It’s syntax is:
str.index(sub[, start[, end]] )
2. index() Parameters
The index() method takes three parameters:
- sub – substring to be searched in the string str.
- start and end(optional) – substring is searched within str[start:end]
3. index() Return Value
- If substring exists inside the string, it returns the lowest index in the string where substring is found.
- If substring doesn’t exist inside the string, it raises a ValueError exception.
The index() method is similar to the find() method for strings.
The only difference is that find() method returns -1 if the substring is not found, whereas index() throws an exception.
4. Example 1: index() With Substring argument Only
sentence = 'Python programming is fun.'
result = sentence.index('is fun')
print("Substring 'is fun':", result)
result = sentence.index('Java')
print("Substring 'Java':", result)
Output
Substring 'is fun': 19
Traceback (most recent call last):
File "<string>", line 6, in
result = sentence.index('Java')
ValueError: substring not found
Note: Index in Python starts from 0 and not 1. So the occurrence is 19 and not 20.
5. Example 2: index() With start and end Arguments
sentence = 'Python programming is fun.'
# Substring is searched in 'gramming is fun.'
print(sentence.index('ing', 10))
# Substring is searched in 'gramming is '
print(sentence.index('g is', 10, -4))
# Substring is searched in 'programming'
print(sentence.index('fun', 7, 18))
Output
15
17
Traceback (most recent call last):
File "<string>", line 10, in
print(quote.index('fun', 7, 18))
ValueError: substring not found
Related posts:
Python String find()
Python property()
Python Keywords and Identifiers
Python String rindex()
Python Program to Display Powers of 2 Using Anonymous Function
Python Machine Learning Second Edition - Sebastian Raschka & Vahid Mirjalili
Python slice()
Encode a String to UTF-8 in Java
Case-Insensitive String Matching in Java
Python String isprintable()
Python reversed()
Python Program to Add Two Numbers
Python Program to Compute all the Permutation of the String
Python Machine Learning Third Edition - Sebastian Raschka & Vahid Mirjalili
Introduction to Machine Learning with Python - Andreas C.Muller & Sarah Guido
Python Package
Python Global, Local and Nonlocal variables
Python Data Structures and Algorithms - Benjamin Baka
Python Custom Exceptions
Python Program to Find the Sum of Natural Numbers
Python Decorators
Python Program to Copy a File
Building Machine Learning Systems with Python - Willi Richert & Luis Pedro Coelho
Machine Learning Mastery with Python - Understand your data, create accurate models and work project...
Python break and continue
Python Program to Iterate Through Two Lists in Parallel
Python List pop()
Python Set isdisjoint()
Python String swapcase()
Python String capitalize()
Array to String Conversions
Python all()