Home > Blockchain >  Select code and run IDE/code editor for Python
Select code and run IDE/code editor for Python

Time:02-03

Is there an IDE/code editor for Python that allows a user to highlight and run a portion of syntax on the window like how SAS allows it in its UI? I'm aware of code blocks in Jupyter Notebook but I would like to know if there's something that's more flexible/free-form exists?

CodePudding user response:

there something like this in Spyder you can divide your code in executable cells like in Jupyter or other notebooks and you can execute with Ctrl Enter. This hotkeys and shortcuts have been discussed here if you need more informations.

Stack answer on hotkeys in Spyder

  • Related