NumPy - Array Operations
What is the dtype of the result when you run this code?
import numpy as np arr1 = np.array([1, 2, 3], dtype=np.int32) arr2 = np.array([1.5, 2.5, 3.5], dtype=np.float64) result = arr1 + arr2 dtype_result = result.dtype
