#In order to set the max display of numpy matrix you can => np.set_printoptions(edgeitems=25, linewidth=100000)
Here is what the above code is Doing:
1. edgeitems: Number of array items in summary at beginning and end of each dimension.
2. linewidth: The number of characters per line for the purpose of inserting line breaks.