Re: [Tutor] Coming from R, what's a good IDE editor? I've tried PyCharm and Spyder

2017-06-04 Thread wolfrage8...@gmail.com
Atom.io Editor is my current favorite after having swapped around a lot. http://www.marinamele.com/install-and-configure-atom-editor-for-python ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org

Re: [Tutor] Coming from R, what's a good IDE editor? I've tried PyCharm and Spyder

2017-06-04 Thread Abdur-Rahmaan Janhangeer
Wing. Wing IDE personal works awesome for me Abdur-Rahmaan Janhangeer, Mauritius abdurrahmaanjanhangeer.wordpress.com On 3 Jun 2017 02:59, "C W" wrote: > Dear Python list, > > I am an R user learning Python. What is a good editor? > > 1) Pycharm > PyCharm evaluates the entire script, I just wan

Re: [Tutor] Coming from R, what's a good IDE editor? I've tried PyCharm and Spyder

2017-06-04 Thread Mike C
Hi Ben, Yes, I read your suggestion. I should have added the following in my earlier message. Jupyter runs in a web browser like Chrome, and you feed it in line by line, so if I want to run a project with a hundred lines, it may take a few. Anyways, Jupyter is the consensus, and I am trying it

Re: [Tutor] Coming from R, what's a good IDE editor? I've tried PyCharm and Spyder

2017-06-04 Thread Dylan Distasio
+1 on Jupyter notebooks, but I also wanted to mention that Spyder will do what you want. You just need to highlight the code fragment of interest to rerun, and then hit ctrl-enter. It will proceed to run just that highlighted section of code. On Sat, Jun 3, 2017 at 9:56 PM, Ben Finney wrote: >