By default, printing a NumPy array that contains more than 1000 elements truncates the array. Printing a full array without truncation displays the entire array.
Solution for How to print a full NumPy array without truncation in Python : You can use numpy.set_printoptions() to print a full NumPy array without truncation Call set_printoptions(threshold=x) to change the threshold where arrays are truncated. To prevent truncation, set the threshold to np.inf.