1

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?

bagelanta
  • 43
  • 4
  • Hi I think, 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. – Emile Dadou Feb 03 '23 at 13:37
  • VSC : highlight your code, hit `shift+enter` – JonSG Feb 03 '23 at 14:44

1 Answers1

1

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

Emile Dadou
  • 307
  • 2
  • 12