demo_numpy_ufunc_lcm1.py:
import numpy as np num1 = 4 num2 = 6 x = np.lcm(num1, num2) print(x)
C:\Users\My Name>python demo_numpy_ufunc_lcm1.py
12