NumPy - Array Data Types
What will be the output of the following code?
import numpy as np arr = np.array([1.7, 2.3, 3.9]) new_arr = arr.astype(int) print(new_arr)
