Python Numpy np.assert_equal()
在np.assert_equal()方法的帮助下,当两个对象不相等时,我们可以通过使用np.assert_equal()方法获得断言错误。
语法: np.assert_equal(actual, desired)
返回:如果两个对象不相等,返回断言错误。
例子#1 :
在这个例子中我们可以看到,通过使用np.assert_equal()方法,当两个对象不相等时,我们能够通过这个方法获得断言错误。
# import numpy and assert_equal
import numpy as np
import numpy.testing as npt
# using np.assert_equal() method
gfg = npt.assert_equal([1, 2], [1, 2])
print(gfg)
输出 :
None
例子#2 :
# import numpy and assert_equal
import numpy as np
import numpy.testing as npt
# using np.assert_equal() method
gfg = npt.assert_equal([1, 2], [5, 2])
print(gfg)
输出 :
AssertionError:
Items are not equal:
item=0ACTUAL: 1
DESIRED: 5