Next:
lower(), upper()
Up:
string
Previous:
atoi()
Contents
Index
find()
>>> str = "hello world" >>> str.find("hello") 0 >>> str.find("ello") 1 >>> str.find("hallo") -1