I should say I'm looking for a solution to the problem of viewing output that does not fit on your screen. For example, range(100) will show the last 30ish lines in your terminal of 30 height.
I am only looking to be nudged in the right direction and am curious how you guys have approached this problem.
What have you done when you run into a situation where you wish you could conveniently scroll through some large output?
Best Answer
Use the scrollback buffer on your terminal.
If you're using GNU Screen, it can be set with defscrollback 1000 or any other number in HOME/.screenrc.
Use Ctrl-a, [ to enter copy mode
j - Move the cursor down by one line
k - Move the cursor up by one line
C-u - Scrolls a half page up.
C-b - Scrolls a full page up.
C-d - Scrolls a half page down.
C-f - Scrolls the full page down.
G - Moves to the specified line
The best part is ? for reverse search, / for forward search while in copy mode.
Super convenient.
Thank you!
Original question:
What is the python equivalent of the bash less command?
LongString | less
Is there something like that for python? I find myself thinking I could use it fairly often but just move on and find some other solution.
By "long things" I mean anything that generates more output lines than my screen. 1000 print messages, a dictionary, a large string, range(1000), etc.
My googlefu has failed.
lessnot work for you? – Greg Hewgill Jul 22 '10 at 2:13lessin the other window? What's stoping you from doing that? Are you aware that Python'shelpfunction usesless? – S.Lott Jul 22 '10 at 2:22