Ted111
Ted111

Reputation: 37

The output in the console window not being shown

I am using Spyder in Python, and my output is probably 4000 lines, and the code runs fine without any errors, and while the code is running i can even see the output being produced.
It takes like 2 seconds to produce the output, but only the last 100 lines I guess are being shown in the output.
The rest of the output just disappeared.
It's seem there is a page limit or something associated with Spyder, so it only shows the last 100 lines or some number of lines.

How do I see my entire output?

Upvotes: 3

Views: 8540

Answers (2)

Mayur
Mayur

Reputation: 21

You can bring back console by following steps -

  1. Go to View -> Panes
  2. Panes menu will show you list of options
  3. Select 'IPython Console'
  4. Try running some print statement, you will be able to see output in console.

Keyboard shortcut for doing same is - Ctrl+ Shift+ I

Upvotes: 1

NMN
NMN

Reputation: 372

I recommend to print out the text to a document, later you can refer to it. You won't miss, even a single line.

Upvotes: 2

Related Questions