Console speed: PyCharm vs Spyder

I have installed PyCharm and Spyder (from Anaconda2).

However, when I run the same code (printing a very large array) from the python console, the console opened from Spyder printed the array in less than five seconds, whereas the console opened from PyCharm took one minute to process and then printed array.

I am wondering what is the reason for the difference in "processing time"? I love PyCharm's autocomplete feature, but in my experience it is slower than Spyder. Is there a solution?

+3


source to share


1 answer


(Spyder helper here). To avoid this issue in Spyder, we only allow 500 lines on the console (Note: this limit is user configurable)



So, I would say that the Pycharm console does not have this functionality (although I cannot say for sure).

+4


source







All Articles