Get your own Python server Result Size: 625 x 565
x
 
import numpy as np
if type(np.add) == np.ufunc:
  print('add is ufunc')
else:
  print('add is not ufunc')
add is ufunc