NumPy - Array Operations
Find the mistake in this code regarding type promotion:
import numpy as np arr1 = np.array([1, 2, 3], dtype=np.uint8) arr2 = np.array([1.5, 2.5, 3.5], dtype=np.float64) result = arr1 * arr2 print(result.dtype)
