#Import the NumPy library
import numpy as np

#Initiating NumPy array
a = np.array([1.234, 2.345, 3.456])

#Truncating the values of the array 
b = np.trunc(a)

#Displaying results
print(b)