I am currently working on some Python exercises and I downloaded two text editors: Brackets and Atom. I use them because I like to be able to run the program I'm writing with a simple shortcut instead of saving it and then opening it on terminal (I'm on OS X Yosemite):
python ex3.py
Most programs run just fine, but whenever I include a raw_input()
function inside my program and I try to run it with a shortcut from Atom or Brackets, the console output just freezes. It doesn't show any error, and I actually can run the program on Terminal just fine.
I would like to enable this feature as it is much more convenient to run my code with a shortcut without having to save and switch programs everytime.
Thanks for your help!