Is it possible for force ipython to output in scientific notation, or set the threshold at which it switches to scientific notation?
For example,
In [26]: 1000000000000
Out[26]: 1000000000000
But I want:
In [26]: 1000000000000
Out[26]: 1e12
Can I do this? I saw an old answer to this from years ago but it does not appear to be working anymore.