demo_numpy_ufunc_gcd1.py:
import numpy as np num1 = 6 num2 = 9 x = np.gcd(num1, num2) print(x)
C:\Users\My Name>python demo_numpy_ufunc_gcd1.py
3