比較字典中的等價(鍵,值)對
問題:
問題:問題:
問題:
<code class="python">for x_values, y_values in zip(x.iteritems(), y.iteritems()): if x_values == y_values: # They match else: # They don't match</code>
問題:
問題:
<code class="python">shared_items = {k: x[k] for k in x if k in y and x[k] == y[k]}</code>
問在給定兩個字典中,如何有效率地比較和統計匹配鍵值對的數量?
答案:
<code class="python">print(len(shared_items))</code>
以上是如何高效統計兩個字典中匹配的鍵值對?的詳細內容。更多資訊請關注PHP中文網其他相關文章!