查找和索引之间的区别


77

我是python的新手,无法完全理解find和index之间的区别。

>>> line
'hi, this is ABC oh my god!!'
>>> line.find("o")
16
>>> line.index("o")
16

他们总是返回相同的结果。谢谢!!

Answers:


103

str.find-1当找不到子字符串时返回。

>>> line = 'hi, this is ABC oh my god!!'
>>> line.find('?')
-1

虽然str.index加注ValueError

>>> line.index('?')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: substring not found

如果找到子字符串,则两个函数的行为方式相同。


1
如果找到子字符串,则两个函数的行为方式相同?
SohamC 2014年

@ user1603970,是的,他们愿意。它们的参数也相同。
falsetru 2014年

@ user1603970,根据index我在答案中链接的文档:类似于find(),但是在未找到子字符串时引发ValueError。
falsetru 2014年

如@reep所述,find仅适用于列表,元组和字符串具有索引的字符串
raja777m

1
python应该删除这两种方法之一。其中之一很好地达到了目的。我也认为,如果找不到index,返回-1find 返回更合适。ValueErrorsub
pouya

23

另外,find仅适用于可用于列表,元组和字符串的索引的字符串

>>> somelist
['Ok', "let's", 'try', 'this', 'out']
>>> type(somelist)
<class 'list'>

>>> somelist.index("try")
2

>>> somelist.find("try")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'list' object has no attribute 'find'

>>> sometuple
('Ok', "let's", 'try', 'this', 'out')
>>> type(sometuple)
<class 'tuple'>

>>> sometuple.index("try")
2

>>> sometuple.find("try")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'tuple' object has no attribute 'find'

>>> somelist2
"Ok let's try this"
>>> type(somelist2)
<class 'str'>

>>> somelist2.index("try")
9
>>> somelist2.find("try")
9

>>> somelist2.find("t")
5
>>> somelist2.index("t")
5

2

@falsetru提供了有关函数之间差异的解释,我对它们之间进行了性能测试。

"""Performance tests of 'find' and 'index' functions.

Results:
using_index t = 0.0259 sec
using_index t = 0.0290 sec
using_index t = 0.6851 sec

using_find t = 0.0301 sec
using_find t = 0.0282 sec
using_find t = 0.6875 sec

Summary:
    Both (find and index) functions have the same performance.
"""


def using_index(text: str, find: str) -> str:
    """Returns index position if found otherwise raises ValueError."""
    return text.index(find)


def using_find(text: str, find: str) -> str:
    """Returns index position if found otherwise -1."""
    return text.find(find)


if __name__ == "__main__":
    from timeit import timeit

    texts = [
        "short text to search" * 10,
        "long text to search" * 10000,
        "long_text_with_find_at_the_end" * 10000 + " to long",
    ]

    for f in [using_index, using_find]:
        for text in texts:
            t = timeit(stmt="f(text, ' ')", number=10000, globals=globals())
            print(f"{f.__name__} {t = :.4f} sec")
        print()
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.