假设我有一个字符串列表(stringList):
[['its', 'all', 'ball', 'bearings', 'these', 'days'],
['its', 'all', 'in', 'a', 'days', 'work']]
而且我还有一组字符串(stringSet),它们是 stringList 中的唯一单词:
{'its', 'all', 'ball', 'bearings', 'these', 'days', 'in', 'a', 'work'}
如果可能的话,使用理解,我怎样才能得到一个字典,将 stringSet 中的每个单词映射到包含该单词的 stringList 索引的字典?在上面的示例中,返回值将是:
{'its': {0,1}, 'all':{0,1}, 'ball':{0}, 'bearings':{0}, 'these':{0}, 'days':{0,1}, 'in':{1}, 'a':{1}, 'work':{1}}
我的挂断是如何将索引累积到字典中。我敢肯定,对于那些比我更远的人来说,它相对简单。提前致谢...