Checks if two values are equal or not.
pyEquals(arg1, arg2)
Value to be compared.
Value to be compared with.
Compares the two arguments and returns the result; equivalent to arg1 == arg2. Arguments can be of type int, double, string, bool or python variable.
--> Py = pyImport("builtins") Py = <module 'builtins' (built-in)> --> a = Py.int(1) a = 1 --> pyEquals(a,1) ans = T