NumPy - Array Operations
What is the output of this code?
import numpy as np x = np.array([2, 4, 6]) y = np.array([1, 3, 5]) z = x - y print(z)
import numpy as np x = np.array([2, 4, 6]) y = np.array([1, 3, 5]) z = x - y print(z)
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions