Sometimes I'll be working with, say, a list of thousands of items in IDLE, and accidently print it out to the shell. When this happens, it crashes or at least very significaly slows down IDLE. As you can imagine, this is extremely inconvenient. Is there a way to make it, rather than printing the entire thing, just give me a summarised [1, 2, ...] output? Any help would be much appreciated.
feedback
|
|
As above, try a custom print function like:
| ||||
|
feedback
|
|
Use IPython as shell instead. | |||
|
feedback
|
|
In Python 3, since print is a function, you should be able to "override" it. (I don't have it installed so I can't try it out to make sure.) Probably not recommended for real applications but if you're just trying things out, it would be okay I suppose. It would go something like:
| |||
|
feedback
|
|
The Squeezer extension for IDLE was written to do just this. From the description on Pypi:
Squeezer, and many other IDLE extensions are included in IdleX. | |||
|
feedback
|