If you want to indent several lines in Python IDLE you just mark the lines and hit Tab. But what if you want to remove the indent from several lines? Shift+Tab does not work for that in IDLE.
相关问题
- Code completion drop down suggestions not working
- How to tidy up HTML code based on JavaScript
- How to make Emacs use tabs instead of spaces?
- Why does Python see a tab as 8 spaces?
- Understanding IndentationErrors in Python 2.7
相关文章
- Why does IDLE 3.4 take so long on this program?
- php: auto indent the whole code?
- PHP correct indentation?
- Is it safe to indent with 2 spaces?
- Eclipse Plugin Development: How to access code wri
- How does Python IDE IDLE shows autocompletion list
- How to run a Python script from IDLE command line?
- PHP - indent block of html
If you're using IDLE, you can use
Ctrl+]
to indent andCtrl+[
to unindent.