博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Autopep8的使用
阅读量:6389 次
发布时间:2019-06-23

本文共 2984 字,大约阅读时间需要 9 分钟。

什么是Autopep8

在python开发中, 大家都知道,python编码规范是PEP8,但是在市级开发中有的公司严格要求PEP8规范开发, 有的公司不会在乎那些,在我的理解中,程序员如果想走的更高,或者更远,干任何事情必须得专业化(本人理解方式), 不要求很多东西都是精通,但最少得有一门精通的语言,小弟在此在大佬面前装逼了, 忘看过的大牛不要揭穿, 留下你懂的我不懂的知识,大家一起学习,一起进步。    谢谢。

 

Autopep8是一个将python代码自动编排的一个工具,它使用pep8工具来决定代码中的那部分需要被排版,Autopep8可以修复大部分pep8工具中报告的排版问题。很多人都知道  Ctrl+Alt+L 也可以排版, 但是我要告诉你,快捷键只是可以简单的排版。跟Autopep8是无法相比的。 

 

安装Autopep8:

pip install autopep8

安装完成之后,import导入一下,测试是否安装成功。

Aytopep8的使用

安装完成之后,打开pycharm,创建一个新的python文件,  demo.py 将一下代码放入文件中。

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, 300, 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."""

这几行代码看上去是不是很乱,   接下来就要使用:Autopep8模块了

打开cmd找到demo.py的文件的上级目录,

然后输入以下命令:

autopep8 --in-place --aggressive --aggressive file.py

file.py   是你的demo.py

输入命令,按回车执行成功是不返回的, 执行完成之后就可以了,在次打开文件就可以看到变化了。

import mathimport sysdef 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,                300,                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."""

执行完Autopep8之后代码是不是看上去简洁多了。

有人会说,没写一个函数就执行一遍命令, 是不是有点麻烦啊, 是的, 有有点麻烦, 但是pycharm是可以配置的, 配置过程如下:

1: File --->  Settings  --->  Tools  --->   External Tools

打开之后,可以看见窗体左上角有一个 + 号, 点击+号添加。

Name: 名称可以随意Program: autopep8        # 前提必须先安装Arguments: --in-place --aggressive --aggressive $FilePath$Working directory: $ProjectFileDir$Advanced Options                ---- Outputfilters:$FILE_PATH$\:$LINE$\:$COLUMN$\:.*

以上配置完成之后点击  OK 保存即可。

快捷使用:

Tools    --->    External Tools  --->   Autopep8       鼠标点击一下即可。

 

转载地址:http://hhdha.baihongyu.com/

你可能感兴趣的文章
如何用sysbench做好IO性能测试
查看>>
利用线性回归模型进行卫星轨道预报
查看>>
懒加载和预加载
查看>>
前端面试题
查看>>
Python的赋值、浅拷贝、深拷贝
查看>>
用python操作mysql数据库(之代码归类)
查看>>
centos安装iftop监控服务器流量
查看>>
ArcGIS Server 10.1 SP1连续查询出现Unable to complete operation错误
查看>>
执行./configure报checking for g++... no错误
查看>>
Dojo学习笔记(十一):Dojo布局——嵌套样例
查看>>
Appium for Android元素定位方法
查看>>
pfSense LAGG(链路聚合)设置
查看>>
教学思路SQL之入门习题《学生成绩》 七.存储过程基础知识
查看>>
createrepo 无法使用解决
查看>>
.net安全类库
查看>>
在Windows 2008 R2上部署SCCM 2007 R2
查看>>
tablespace backup模式一个没用的技术
查看>>
PostgreSQL安装
查看>>
七牛实时音视频云视频连线demo(web部分)
查看>>
Mysql 权限
查看>>