About 965,000 results
Open links in new tab
  1. Difference Between find() and index() in Python - GeeksforGeeks

    Nov 21, 2024 · Use find () when we need to check if a substring exists and do not want to handle exceptions. Use index () when we are sure that the substring exists or we want an exception to …

  2. python - Difference between find and index - Stack Overflow

    Nov 26, 2024 · index is a sequence method with well-defined behaviour, including to raise ValueError if no match is found: " index raises ValueError when x is not found in s." What the …

  3. Python - Why do the find and index methods work differently?

    In Python, find and index are very similar methods, used to look up values in a sequence type. find is used for strings, while index is for lists and tuples. They both return the lowest index …

  4. Understanding the Key Differences Between Find() and Index() in Python

    Delving deeper into the dissimilarities between Python’s find() and index(), it becomes evident that their key differences lie in two main aspects: how they handle values not found, and what they …

  5. Understanding the Difference Between find() and index() in Python

    Dec 25, 2024 · Both find() and index() are powerful tools for locating substrings in Python. Here’s a quick recap: Use find() for safe, non-exception-based searches where the substring might …

  6. Difference between find() and index() in Python - CodeSpeedy

    Difference between find() and index() in Python If a substring is not found in a string find() returns -1 whereas index() raises ValueError exception . As a result, find() can be used in conditional …

  7. Difference between find() and index() in Python

    Find (), in other words, returns the index of the first occurrence of a substring in a string. find () takes three parameters: the substring to be searched, the index of start, and the index of the …

  8. Difference between index() and find() in Python - CSEStack

    Jul 9, 2020 · If you want to find the substring or character in the string, there are two methods- index() and find(). Both of these methods return the index of the substring if the substring you …

  9. Python’s find() and index() Functions: A Comprehensive Guide

    Sep 20, 2023 · When working with strings in Python, you may often need to search for a specific substring within a larger string. Python provides two essential string methods for this purpose: …

  10. find vs in operation in string python - Stack Overflow

    Aug 26, 2013 · It's used to find the index of a character in a string, not to check whether a character is in a string. Thus, it will be much slower. If you're working with much larger data, …

Refresh