Home » Python String | endswith() method with Examples

Python String | endswith() method with Examples

by Online Tutorials Library

Python String endswith() Method

Python endswith() method returns true of the string ends with the specified substring, otherwise returns false.

Signature

Parameters

  • suffix : a substring
  • start : start index of a range
  • end : last index of the range

Start and end both parameters are optional.

Return Type

It returns a boolean value either True or False.

Let’s see some examples to understand the endswith() method.

Python String endswith() Method Example 1

A simple example which returns true because it ends with dot (.).

Output:

True  

Python String endswith() Method Example 2

It returns false because string does not end with is.

Output:

False  

Python String endswith() Method Example 3

Here, we are providing start index of the range from where method starts searching.

Output:

False  

Python String endswith() Method Example 4

It returns true because third parameter stopped the method at index 13.

Output:

True  

Next TopicPython Strings

You may also like