Python Numpy np.assert_string_equal()

Python Numpy np.assert_string_equal()

在np.assert_string_equal()方法的帮助下,如果两个字符串不相等,我们可以通过使用np.assert_string_equal()方法获得断言错误。

语法: np.assert_string_equal(actual, desired)
返回:如果两个字符串不相等,返回断言错误。

例子#1 :
在这个例子中,我们可以看到,通过使用np.assert_string_equal()方法,如果两个字符串不相等,我们就可以通过这个方法得到断言错误。

# import numpy and assert_string_equal
import numpy as np
import numpy.testing as npt
  
# using np.assert_string_equal() method
gfg = npt.assert_string_equal('gfg', 'gfg')
  
print(gfg)

输出 :

None

例子#2 :

# import numpy and assert_string_equal
import numpy as np
import numpy.testing as npt
  
# using np.assert_string_equal() method
gfg = npt.assert_string_equal('gfg', 'geeksforgeeks')
  
print(gfg)

输出 :

AssertionError: Differences in strings:
– gfg+ geeksforgeeks

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程