find()

>>> str = "hello world"
>>> str.find("hello")
0
>>> str.find("ello")
1
>>> str.find("hallo")
-1