Is there a way to configure the ipython notebook so that whenever I print a long list, I automatically see the bottom?
for example, in the terminal, if I run the following:
for i in range(1000):
print i
It automatically scrolls to the bottom:
992
993
994
995
996
997
998
999
In [2]:
But in the Python notebook, I see the beginning and I have to manually scroll down to the last numbers.
I am running a long loop that takes a few seconds for each iteration, and it is inconvenient to have to scroll down whenever I want to check how far along the program is,
thank you,