Suppress Scientific Notation in Numpy When Creating Array From Nested List

This is what you need:

np.set_printoptions(suppress=True)

Here is the documentation.

Leave a Comment