Pycharm配置autopep8實現流程解析
關於PEP 8
PEP 8,Style Guide forPythonCode,是Python官方推出編碼約定,主要是為了保證 Python 編碼的風格一致,提高程式碼的可讀性。
官網地址:https://www.python.org/dev/peps/pep-0008/
關於Autopep8
Autopep8是自動將Python程式碼格式化為符合PEP 8風格的工具。它使用pycodestyle工具來確定程式碼的哪些部分需要被格式化。Autopep8能夠修復大部分pycodestyle檢測的格式問題。
github地址:https://github.com/hhatto/autopep8
下載安裝Autopep8
pip install autopep8
使用Autopep8
命令列使用方式如下
$ autopep8 --in-place --aggressive --aggressive <filename>
$ autopep8 --in-place --aggressive --aggressive Student.py
Pycharm配置Autopep8方法
1)具體流程:選擇選單「File」–>「Settings」–>「Tools」–>「External Tools」–>設定相關配置 -> 點選加號新增工具
填寫如下配置項,點選「OK」儲存
Settings–>Tools–>External Tools 點選新增按鈕Name:autopep8(可以自定義)
Tools settings:
Programs:autopep8(不能修改)
Parameters:--in-place --aggressive --aggressive $FilePath$
Working directory:$ProjectFileDir$
Advanced Options:在output filters新增:$FILE_PATH$\:$LINE$\:$COLUMN$\:.*
3) 使用autopep8自動格式化你的python程式碼
import math def example1(): some_tuple = (1,2,3,'a') some_variable = { 'long': 'Long code lines should be wrapped within 79 characters.','other': [math.pi,100,200,300,9876543210,'This is a long string that goes on'],'more': { 'inner': 'This whole logical line should be wrapped.',some_tuple: [ 1,20,40000,500000000,60000000000000000]}} return (some_tuple,some_variable) def example2(): return ('' in {'f': 2}) in {'has_key() is deprecated': True}; class Example3(object): def __init__(self,bar): # Comments should have a space after the hash. if bar: bar += 1 bar = bar * bar else: some_string = """ Indentation in multiline strings should not be touched.Only actual code should be reindented. """
第一種方式:
編寫完程式碼後,右鍵選擇「Extern Tools」–>「autopep8」
第二種方式:
選擇選單「Tool」–>「Extern Tools」–>「autopep8」即可
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。