Python編輯器設定(包括Visual Studio Code和Sublime Text3)

來源:互聯網
上載者:User

標籤:visual studio code   sublime text3   python   

源起

Python強制縮排,使用Tab鍵和空格都可以,但不能混用。混用Tab和空格會導致報錯:IndentationError: unindent does not match any outer indentation level。如果你的編輯器沒有可視化空格和Tab,修改起來是抓狂的。

PEP8推薦使用空格來縮排。因為不同的編輯器、IDE對Tab鍵的處理不一樣,有的寬度為4,有的為8。

配置下面修改一下Visual Studio Code和Sublime Text3的配置,讓空格和Tab鍵都可視化,而且讓輸入Tab鍵時用4個空格代替1個Tab。
Visual Studio CodeFile->Preferences->User Settings右側視窗,json代碼:
{    "editor.tabSize": 4,    "editor.insertSpaces": true,    "editor.renderWhitespace": true,    "draw_white_space": "all"}

Sublime Text3Preferences->Settings User,在json設定檔中加入兩項
"translate_tabs_to_spaces": true,"draw_white_space": "all"

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

Python編輯器設定(包括Visual Studio Code和Sublime Text3)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.