我正在寻找将句子拆分为单词的pythonic方法,并且还存储句子中所有单词的索引信息,例如
a = "This is a sentence"
b = a.split() # ["This", "is", "a", "sentence"]
现在,我还想存储所有单词的索引信息
c = a.splitWithIndices() #[(0,3), (5,6), (8,8), (10,17)]
实现 splitWithIndices() 的最佳方法是什么,python 是否有任何我可以使用的库方法。任何可以帮助我计算单词索引的方法都会很棒。