文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python Autopep8实现按PEP8风格自动排版的方法

2023-06-06 16:42

关注

小编给大家分享一下python Autopep8实现按PEP8风格自动排版的方法,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

Autopep8是一个将Python代码自动排版为PEP8风格的小工具。它使用pep8工具来决定代码中的哪部分需要被排版。Autopep8可以修复大部分pep8工具中报告的排版问题。

(1)安装步骤如下:

localhost:~ a6$ sudo pip install autopep8Password:The directory '/Users/a6/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.The directory '/Users/a6/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.Collecting autopep8Collecting pycodestyle>=2.3 (from autopep8) Downloading pycodestyle-2.3.1-py2.py3-none-any.whl (45kB)  100% |████████████████████████████████| 51kB 324kB/sInstalling collected packages: pycodestyle, autopep8Successfully installed autopep8-1.3.3 pycodestyle-2.3.1localhost:~ a6$ sudo pip install autopep8The directory '/Users/a6/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.The directory '/Users/a6/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.Requirement already satisfied: autopep8 in /Library/Python/2.7/site-packagesRequirement already satisfied: pycodestyle>=2.3 in /Library/Python/2.7/site-packages (from autopep8)

(2)示例代码:

1)运行命令前代码的排版 (保存在test_autopep8.py)

import math, sys; def example1():  ####This is a long comment. This should be wrapped to fit within 72 characters.  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 {'has_key() is deprecated':True}.has_key({'f':2}.has_key(''));class Example3(  object ):  def __init__  ( self, bar ):   #Comments should have a space after the hash.   if bar : bar+=1; bar=bar* bar  ; return bar   else:          some_string = """            Indentation in multiline strings should not be touched.Only actual code should be reindented."""          return (sys.path, some_string)

2)运行命令

bogon:AB a6$ autopep8 --in-place --aggressive --aggressive test_autopep8.py

3)运行命令后代码的排版

import mathimport sys def example1():  # This is a long comment. This should be wrapped to fit within 72  # characters.  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      return bar    else:      some_string = """            Indentation in multiline strings should not be touched.      Only actual code should be reindented.      """      return (sys.path, some_string)

以上是“python Autopep8实现按PEP8风格自动排版的方法”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯