How to Use the find () method in Python

Source: Internet
Author: User

How to Use the find () method in Python

This article describes how to use the find () method in Python. It is a basic knowledge in Python learning. For more information, see

The find () method is used to determine the str string. If the start index beg and end index can be found in a string or a substring of a string.

Syntax

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

?

1

Str. find (str, beg = 0 end = len (string ))

Parameters

Str -- this option specifies the string to be searched.

Beg -- this is the start index, which is 0 by default.

End -- this is the end index. By default, it is equal to the length of the string.

Return Value

If the index returned by this method is found,-1 is returned.

Example

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

?

1

2

3

4

5

6

7

8

#! /Usr/bin/python

 

Str1 = "this is string example... wow !!! ";

Str2 = "exam ";

 

Print str1.find (str2 );

Print str1.find (str2, 10 );

Print str1.find (str2, 40 );

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

?

1

2

3

15

15

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.