string indexofpython code example
Example 1: python string index of
sentence = 'Python programming is fun.'
result = sentence.index('is fun')
print("Substring 'is fun':", result)
result = sentence.index('Java')
print("Substring 'Java':", result)
Example 2: python string index
# Start from zero and the return value is exact index of first letter