我的(唯一的)單詞的列表點擊數:保持在字典
words = [store, worry, periodic, bucket, keen, vanish, bear, transport, pull, tame, rings, classy, humorous, tacit, healthy]
,我想用列表的兩種不同的列表,以交叉檢查(使用相同的範圍內),而計算的數量命中。
l1 = [[terrible, worry, not], [healthy], [fish, case, bag]]
l2 = [[vanish, healthy, dog], [plant], [waves, healthy, bucket]]
我想用字典,並承擔字爲關鍵,但將需要兩個「價值」(每個列表)的命中數。 所以輸出會是這樣的:
{"store": [0, 0]}
{"worry": [1, 0]}
...
{"healthy": [1, 2]}
怎麼會是這樣的工作? 提前謝謝!
聽起來你已經得到了基本結構制定。你到底在做什麼? – glibdud
讓您的生活更輕鬆,並使用'collections.Counter'列表來代替? –
@glibdud,我想我的想法是正確的,但我可能會錯過某種方法或解決方法,比迭代和添加更簡單 - 就像tobias現在說的那樣...也要檢查它! – DJM