How to check if a string ends with another in Python

How to check if a string ends with another in Python

In this post we will give you information about How to check if a string ends with another in Python. Hear we will give you detail about How to check if a string ends with another in PythonAnd how to use it also give you demo for it if it is necessary.

we are going to learn about how to check if a string ends with another substring in Python.

Using endswith() method

In Python, we can use the built-in endswith() method to check if a given string ends with another string or not.

The endswith() method returns true if a string ends with a particular value; otherwise, it returns false.

Here is an example, that checks if a given string ends with .exe or not:

str = "ram-app.exe"result = str.endswith(".exe")print (result)

Output:

True

False case:

str = "ram-app"result = msg.endswith("exe")print (result)

Output:

False

Similarly, we can also check it from a list of strings by passing a tuple.

Example:

filename = "app.js"result = filename.endswith((".js",".html"))print (result) # True

Hope this code and post will helped you for implement How to check if a string ends with another in Python. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US