starting point

About this tag
The tag 'starting point' on WindowsForum.com covers discussions about specifying the beginning position in programming functions, such as Python's string find() method. Users ask how to define the starting and ending points for searches, with examples showing that find() returns the index of the substring or -1 if not found. The content focuses on Python string operations and the syntax for limiting search ranges.
  1. M

    Android Python string find() examples

    I'm looking for examples, but I'm not finding any. Are there any examples on the internet? I'd like to know what it returns when it can't find something, as well as how to specify the starting and ending points, which I assume will be 0, -1. >>> x = "Hello World" >>> x.find('World') 6 >>>...
Back
Top