SciPy - Linear Algebra (scipy.linalg)
What will be printed by this code?
import numpy as np from scipy.linalg import solve A = np.array([[3, 2], [1, 4]]) b = np.array([8, 11]) x = solve(A, b) print(x)
