Run »
import numpy as np if type(np.add) == np.ufunc: print('add is ufunc') else: print('add is not ufunc')
add is ufunc