當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python tf.test.TestCase.assertItemsEqual用法及代碼示例


用法

assertItemsEqual(
    first, second, msg=None
)

一個無序的序列比較斷言相同的元素,而不考慮順序。如果相同的元素出現不止一次,它會驗證元素出現的次數是否相同。

self.assertEqual(Counter(list(first)),
                 Counter(list(second)))

例子:

- [0, 1, 1] and [1, 0, 1] compare equal.
- [0, 0, 1] and [0, 1] compare unequal.

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.test.TestCase.assertItemsEqual。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。