萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> Python中的index()方法使用教程

Python中的index()方法使用教程

   這篇文章主要介紹了Python中的index()方法使用教程,是Python入門學習中的基礎知識,需要的朋友可以參考下

  index()方法確定字符串str,如果起始索引beg和結束索引end在末尾給出了找到字符串或字符串的一個子串。這個方法與find()方法一樣,只是如果沒有找到子符趾會拋出一個異常。

  語法

  以下是index()方法的語法:

  ?

1 str.index(str, beg=0 end=len(string))

  參數

  str -- 此選項指定要搜索的字符串。

  beg -- 這是開始索引,默認情況下是 0。

  end -- 這是結束索引,默認情況下它等於該字符串的長度。

  返回值

  方法返回索引,如果找到這個str;如果沒有找到則拋出一個異常。

  例子

  下面的例子顯示了index()方法的使用。

  ?

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);

  當我們運行上面的程序,它會產生以下結果:

  ?

1 2 3 4 5 6 7 15 15 Traceback (most recent call last): File "test.py", line 8, in print str1.index(str2, 40); ValueError: substring not found shell returned 1<BR>
copyright © 萬盛學電腦網 all rights reserved