In IPython, you can use %page obj
to show the object obj
using your standard pager (usually less
). Alternatively, you can increase the scroll buffer of your terminal, which might be convenient in any case.
%page obj
-- display object similar to IPython default display (repr-like), using pager if output size requires
%page -r obj
-- display object similar to print, using pager if size requires
%page
can only take a plain name or attribute reference. It cannot evaluate an arbitrary expression, but you can use a temporary variable to work around this limitationL
tmp = ex * pr + ess - ion
%page tmp
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…