Reputation: 37
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
Reputation: 21
You can bring back console by following steps -
Keyboard shortcut for doing same is - Ctrl+ Shift+ I
Upvotes: 1
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