how to open text editor
Title
Question
how to open text editor simulataneously in ipython
Python-3.4.3 Getting-started-with-for 01-02 min 20-30 sec
Answers:
You can use %edit myfile.py command (use your file name in place of myfile.py), create or edit a file and execute it immediately once you exit.
In case you are on Linux you can use !vim myfile.py to use vim or nano as an external command.
Login to add comment