pycharm 添加2to3 autopep8

2to3可以很方便的将python2的代码转换为3的代码,是python自带的一个功能,而pep8是python编写规范,它可以使代码更加规范具有可读性

2to3

pycharm 添加2to3 autopep8_第1张图片
image.png
Name、Description:自选
Program:$ModuleSdkPath$
Parameters:E:\anaconda3\Tools\scripts\2to3.py -w -n "$FilePath$"
Working directory:$FileDir$

autopep8

首先使用pip install autopep8安装autopep8

pycharm 添加2to3 autopep8_第2张图片

  • tool setting
Programs:autopep8
Parameters:--in-place --aggressive --aggressive $FilePath$
Working directory:$ProjectFileDir$
  • 点击Output Files
点击添加,名称可以任意填写
Regular expression to match output:$FILE_PATH$:$LINE$:$COLUMN$:.*
pycharm 添加2to3 autopep8_第3张图片
image.png

你可能感兴趣的:(pycharm 添加2to3 autopep8)