我有一個兩層深的字典。也就是說,第一個字典中的每個鍵都是一個url,值是另一個字典,每個鍵都是單詞,每個值是該單詞在該URL上出現的次數。它看起來是這樣的:如何在python字典詞典中找到最常用的詞條
dic = {
'http://www.cs.rpi.edu/news/seminars.html': {
'hyper': 1,
'summer': 2,
'expert': 1,
'koushk': 1,
'semantic': 1,
'feedback': 1,
'sandia': 1,
'lewis': 1,
'global': 1,
'yener': 1,
'laura': 1,
'troy': 1,
'session': 1,
'greenhouse': 1,
'human': 1
...and so on...
字典本身是很長,在它25頁的URL,每個URL有另一個字典作爲其URL和次數其內發現找到的每個字值。
我想找到出現在詞典中最不同的網址上的單詞或單詞。所以輸出應該是這個樣子:
The following words appear x times on y pages: list of words
您能否提供完整的示例輸入和輸出? – thegrinner 2013-04-10 18:24:48
另外,你到目前爲止嘗試過什麼? – 2013-04-10 18:40:33