我想知道是否有内置的方法来实现这个目标:
>>> my_str = 'This is just a test string'
>>> to_find = 'just'
>>> my_str.find(to_find)
8 # what I normally get
>>> my_str.find(to_find) + len(to_find) - 1
11 # what I want to get
>>>
这是获得我想要的结果的更好和“pythonic”的方法吗?