原文:https://www.jianshu.com/p/8b6c425b65a6
在编程过程中,要遵循一定的规则,包括函数命名、变量命名、代码注释等,虽然不遵循也能使代码运行成功,但优秀的、整洁的代码必定是遵循潜移默化的一些规则,这样别人阅读起来也会很轻松,否则将来甚至自己也看不懂。为了能及时发现问题,可使用python的IDLE来编写,如pycharm等工具遵循PEP 8规则,会自动发现并提示代码存在的问题
本文目录如下
目录
一、简明概述
1 编码
2 代码格式
2.1 缩进
2.2 行宽
2.3 引号
2.4 空行
3 import语句
4 空格
5 换行
二 注释
1 文件注释
2 块注释
3 行注释
4 Docstring
三 命名规范
1 模块
2 类名
3 函数
4 变量名
5 常量
# -*- coding: utf-8 -*-
#! /usr/bin/env python3
每行代码尽量不超过 80 个字符(在特殊情况下可以略微超过 80 ,但最长不得超过 120)。理由:
"...",
例如错误信息;很多情况还是 unicode,使用u"你好世界"
'...',
例如 dict 里的 keyr"..."
"""......"""
class A:
def __init__(self):
pass
def hello(self):
pass
def main():
pass
# 正确的写法
import os
import sys
# 不推荐的写法
import sys,os
# 正确的写法
from subprocess import Popen, PIPE
# 正确的写法
from foo.bar import Bar
# 不推荐的写法
from ..bar import Bar
import os
import sys
import msgpack
import zmq
import foo
from myclass import MyClass
import bar
import foo.bar
bar.Bar()
foo.bar.Bar()
[=,-,+=,==,>,in,is not, and]
:# 正确的写法
i = i + 1
submitted += 1
x = x * 2 - 1
hypot2 = x * x + y * y
c = (a + b) * (a - b)
# 不推荐的写法
i=i+1
submitted +=1
x = x*2 - 1
hypot2 = x*x + y*y
c = (a+b) * (a-b)
,
之后要有空格# 正确的写法
def complex(real, imag):
pass
# 不推荐的写法
def complex(real,imag):
pass
# 正确的写法
def complex(real, imag=0.0):
pass
# 不推荐的写法
def complex(real, imag = 0.0):
pass
# 正确的写法
spam(ham[1], {eggs: 2})
# 不推荐的写法
spam( ham[1], { eggs : 2 } )
# 正确的写法
dict['key'] = list[index]
# 不推荐的写法
dict ['key'] = list [index]
# 正确的写法
x = 1
y = 2
long_variable = 3
# 不推荐的写法
x = 1
y = 2
long_variable = 3
Python 支持括号内的换行。这时有两种情况。
foo = long_function_name(var_one, var_two,
var_three, var_four)
def long_function_name(
var_one, var_two, var_three,
var_four):
print(var_one)
使用反斜杠\
换行,二元运算符+
.
等应出现在行末;长字符串也可以用此法换行
session.query(MyTable).\
filter_by(id=1).\
one()
print 'Hello, '\
'%s %s!' %\
('Harry', 'Potter')
禁止复合语句,即一行中包含多个语句:
# 正确的写法
do_first()
do_second()
do_third()
# 不推荐的写法
do_first();do_second();do_third();
if/for/while
一定要换行:
# 正确的写法
if foo == 'blah':
do_blah_thing()
# 不推荐的写法
if foo == 'blah': do_blash_thing()
在文件的最开头,可以添加文件的版权、许可声明、作者、日期、版本等信息,如
# **********************************************************
# * Author : xxxxxx
# * Email : [email protected]
# * Create time : 2018-04-22 19:26
# * Filename : collect-sys-msg.py
# * Description :
# **********************************************************
“#”号后空一格,段落件用空行分开(同样需要“#”号)
# 块注释
# 块注释
#
# 块注释
# 块注释
至少使用两个空格和语句分开,注意不要使用无意义的注释
# 正确的写法
x = x + 1 # 边框加粗一个像素
# 不推荐的写法(无意义的注释)
x = x + 1 # x加1
app = create_app(name, options)
# =====================================
# 请勿在此处添加 get post等app路由行为 !!!
# =====================================
if __name__ == '__main__':
app.run()
作为文档的Docstring一般出现在模块头部、函数和类的头部,这样在python中可以通过对象的__doc__对象获取文档。简单来说,就是出现在模块、函数、类、方法里第一个语句的,就是docstring,会自动变成属性__doc__,比如
def foo():
""" This is function foo"""
可通过foo.__doc__访问得到' This is function foo'.
"""
This is a groups style docs.
Parameters:
param1 - this is the first param
param2 - this is a second param
Returns:
This is a description of what is returned
Raises:
KeyError - raises an exception
"""
# 正确的模块名
import decoder
import html_parser
# 不推荐的模块名
import Decoder
class Farm():
pass
class AnimalFarm(Farm):
pass
class _PrivateFarm(Farm):
pass
def run():
pass
def run_with_env():
pass
class Person():
def _private_func():
pass
if __name__ == '__main__':
count = 0
school_name = ''
MAX_CLIENT = 100
MAX_CONNECTION = 1000
CONNECTION_TIMEOUT = 600