string get index python 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 od
str.index(sub[, start[, end]] )