-
Notifications
You must be signed in to change notification settings - Fork 0
IDE
agrov edited this page Feb 13, 2020
·
3 revisions
I used Spyder to write, debug and test my python codes. For HTML,CSS and Javascript, I used Notepad++ text editor. As this task point focuses on Integrated Development environment, I have explained Spyder in detail below:
Spyder is an open source cross-platform IDE for scientific programming in Python language. Spyder is extensible with third-party plugins includes support for interactive tools for data inspection and embeds Python-specific code quality assurance and introspection instruments, such as Pyflakes, Pylint.
Spyder has keyboard shortcuts for most of its commands related to editing, navigation,debugging,etc. Below mentioned are some of my favorite shortcuts:
- F5-Run file (complete program)
- F6-Run selection (or current line)
- Ctrl + L -Go to line
- Shift+Tab- Unindent selected line(s)
- Ctrl+I- Inspect current object
- F12- Breakpoint
- Ctrl + Shift + P- Project explorer pane
- Ctrl + Shift + V- Variable Explorer pane
- Ctrl + F11 -Step into
- Ctrl + Shift + F12- Stop