https://fangohr.github.io/blog/spyder-the-scientific-python-development-environment.html
Last active
October 9, 2023 13:54
-
-
Save mh0w/77f623dbece25f7221ee2b3db287bc63 to your computer and use it in GitHub Desktop.
Intro to Spyder
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Temp notes to self:
Alt-Up* moves the current line up. If multiple lines are highlighted, they are moved up together. Alt-Down* works correspondingly, moving line(s) down.
Ctrl-LeftMouseButton or Alt-G* on a function/method in the Editor opens a new Editor tab showing the definition of that function.
Ctrl-Shift-F* activates the Find in Files pane, allowing grep-like searches across all files in a specified scope.
Ctrl-I* when pressed while the cursor is on an object opens documentation for that object in the help pane.
CTRL + F5 for debugging mode; In the IPython Console, we can call %debug straight after an exception has been raised: this will start the IPython debug mode, which allows inspection of local variables at the point where the exception occurred as described above. This is a lot more efficient than adding print statements to the code an running it again.