How to Use the endswith () method to process strings in Python, pythonendswith

Source: Internet
Author: User

How to Use the endswith () method to process strings in Python, pythonendswith

The endswith () method returns true. If the string ends with a specified suffix, otherwise, the return value is (False: the matching with an optional restriction starts and ends with the given index ).
Syntax

The following is the syntax of the endswith () method:

Str. endswith (suffix [, start [, end])

Parameters

  • Suffix -- this may be a string or a tuples used to find the suffix.
  • Start -- slice starts from
  • End -- slice till now

Return Value

Returns true if the string ends with the specified suffix. Otherwise, false is returned.
Example

The following example shows how to use the endswith () method.

#! /Usr/bin/pythonstr = "this is string example... wow !!! "; Suffix =" wow !!! "; Print str. endswith (suffix); print str. endswith (suffix, 20); suffix = "is"; print str. endswith (suffix, 2, 4); print str. endswith (suffix, 2, 6 );

When we run the above program, it will produce the following results:

TrueTrueTrueFalse


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.