IPython Console in Spyder(Anaconda) is truncating output

11,785

(Spyder maintainer here) This is done to avoid blocking Spyder when too much output is going to be printed in the console.

You can increase the current limit by going to

Tools > Preferences > IPython console > Display > Buffer

However, if you want to read the help associated to an object, you can press Ctrl + I (Cmd + I in macOS) in front of it and the get its help rendered in another Spyder pane called Help.

Share:
11,785
idpd15
Author by

idpd15

Updated on June 25, 2022

Comments

  • idpd15
    idpd15 almost 2 years

    The IPython console in Spyder(Anaconda) is truncating the upper part of the output when the output is large.
    Eg I was trying to see what all is in the os module.
    I wrote the command help(os) and the output was very big, so it truncated some of the top entries. What should I do to see the full output?