I have an array that looks like this:
[[  9.71369349e+02   1.06915603e+03   1.14821723e+03   3.16300000e+02]
 [  1.83700564e+03   1.85500390e+03   1.87149745e+03   7.69400000e+01]
 ...,
 [  1.00000000e+20   5.56290955e+02   7.92477067e+02   4.34600000e+01]]
How can I pretty print this so that the values are not exponentiated?
I've tried using:
sp.set_printoptions(suppress=True)
This had no effect.
 
    