The index () method in Python uses the tutorial

Source: Internet
Author: User
Tags in python

This article mainly introduces the index () method in Python using the tutorial, is the basic knowledge of Python introductory learning, need friends can refer to the

The index () method determines string str if a substring of the string or string is found at the end of the start index Beg and end index. This method is the same as the Find () method, except that an exception is thrown if no child toe is found.

Grammar

The following is the syntax for the index () method:

?

1 Str.index (str, beg=0 End=len (String))

Parameters

STR--This option specifies the string to search for.

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

End--This is the ending index, which is equal to the length of the string by default.

return value

method returns an index if the STR is found, and an exception is thrown if it is not found.

Example

The following example shows the use of the index () method.

?

1 2 3 4 5 6 7 8 #!/usr/bin/python str1 = "This is string Example....wow!!!";   STR2 = "Exam"; Print Str1.index (STR2); Print Str1.index (str2, 10); Print Str1.index (str2, 40);

When we run the above program, it produces the following results:

?

1 2 3 4 5 6 7 Traceback (most recent call last): File "test.py", line 8, in print Str1.index (STR2, 40); Valueerror:substring not found Shell returned 1<br>
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.