Python Tutorial- Index Function

Python Exercise Lists

How to detect if a Python string contains a substring?

Similar to the find () method, the index () method can also be used to retrieve whether the specified string is included. The difference is that when the specified string does not exist, the index() method will throw an exception.

The syntax of the index() method is as follows:

str.index(sub[,start[,end]])

The meaning of each parameter in this format is:

  • str: the original string;
  • sub: the substring to be retrieved;
  • start: indicates the starting position of the search. If not specified, the search starts from the beginning by default;
  • end: indicates the end position of the search. If not specified, the search will continue until the end by default.

[Example] Use index () method to retrieve the index of the first occurrence of "e" in "www.freelearningpoints.com".

string = "www.freelearningpoints.com"
string.index('e')

The output is:

6

[Example] When the retrieval fails, index() will throw an exception.

string = "www.freelearningpoints.com"
string.index('b')

The output is:

---------------------------------------------------------------------------
ValueError       Traceback (most recent call last)
[ipython-input-1-150698d84fad] in [module]
1 string = "www.freelearningpoints.com"
----> 2 string.index('b')
ValueError: substring not found

Like find() and rfind(), string variables also have rindex() methods, which are similar to index() methods, except that they are retrieved from the right, for example:

string = "www.freelearningpoints.com"
string.rindex('e')

The output is:

9

                               


More Tutorials:

Python Installation - Linux (Ubuntu)
Python Installation - Mac OS
Integrated Development Environment - IDE
Python - Basic Variables
Python - Sequence Introduction
Python - Output Formatting
Python - Escape Character
Python - Type Conversion
Python - Numbers
Python – Arithmetic Operators
Python – Assignment Operators
Python – Comparison Operators
Python – Logical Operators
Python – Precedence and Associativity Operators
Python – Bytes Type and Usage
Python – Long & Raw Strings
Python – Concatenate Function
Python – Slice Function
Python – Length and Split Function
Python – Join and Count Function
Python – Find Function
Python – Index Function
Python – Alignment Function
Python – Startswith and Endswith Function
Python – String Case Conversion
Python – Remove Specified Character
Python – Encode and Decode Function
Python – dir and help Function
Python – Input Output Introduction
Python – Basic Operation
Python – Open Function
Python – Read Function
Python – Readline Function
Python – Write Function
Python – Close Function
Python – Seek and Tell Function
Python – Pickle Module
Python - File Input Module and Linecache Module
Python - Pathlib Module
Python - Pathlib Module
Python - os.path Module
Python - fnmatch Module
Python - Tuple Introduction
Python - List Introduction
Python - List Add Element
Python - List Delete Element
Python - List Modification Element
Python - List Find Element
Python - Dictionary Introduction
Python - Dictionary Basic Operation
Python - Dictionary Method Guide
Python - Set Collection
Python - Set Basic Operation
Python - Set Basic Method
Python - Frozenset Method
Python - If Condition I
Python - If Condition II
Python - While loop
Python - For loop
Python - Pass Statement
Python - Break Statement
Python - Zip Reverse Function
Python - Function Introduction
Python - Positional Parameters
Python - Key Arguments
Python - None and Return
Python - Variable Scope
Python - Local Function
Python - Closure Method
Python - Lamdba Expression


More Python Exercises:

Python String Exercises
Python List Exercises
Python Library Exercises
Python Sets Exercises
Python Array Exercises
Python Condition Statement Exercises