EXAMPLE:css
# (垂直隱式縮進)對準左括號
foo = long_function_name(var_one, var_two,
var_three, var_four)
# (懸掛縮進) 通常狀況只需多一層縮進
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)
# 右括號回退
my_list = [
1, 2, 3,
4, 5, 6,
]
result = some_function_that_takes_arguments(
'a', 'b', 'c',
'd', 'e', 'f',
)
錯誤示範: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)
# 右括號不回退,不推薦
my_list = [
1, 2, 3,
4, 5, 6,
]
result = some_function_that_takes_arguments(
'a', 'b', 'c',
'd', 'e', 'f',
)
EXAMPLE:編程
# 無括號續行, 利用反斜槓
with open('/path/to/some/file/you/want/to/read') as file_1, \
open('/path/to/some/file/being/written', 'w') as file_2:
file_2.write(file_1.read())
# 括號內續行, 儘可能在運算符後再續行
class Rectangle(Blob):
def __init__(self, width, height, color='black', emphasis=None, highlight=0):
if (width == 0 and height == 0 and
color == 'red' and emphasis == 'strong' or
highlight > 100):
raise ValueError("sorry, you lose")
if width == 0 and height == 0 and (color == 'red' or
emphasis is None):
raise ValueError("I don't think so -- values are %s, %s" %
(width, height))
EXAMPLE:bash
# 類的方法定義用單個空行分割,兩行空行分割頂層函數和類的定義。
class A(object):
def method1():
pass
def method2():
pass
def method3():
pass
EXAMPLE:markdown
# 按模塊首字母排序導入, 依此遞推
import active
import adidas
import create
錯誤示例:函數
# 一行導入多模塊
import sys, os, knife
# 不按首字母導入
import create
import active
import beyond
EXAMPLE: 佈局
# 單引號和雙引號效果同樣
name = 'JmilkFan'
name = "Hey Guys!"
EXAMPLE:ui
spam(ham[1], {eggs: 2})
錯誤示例:lua
spam( ham[ 1 ], { eggs: 2 } )
if x == 4: print x, y; x, y = y, x
錯誤示例:spa
if x == 4 : print x , y ; x , y = y , x
EXAMPLE:
spam(1)
dct['key'] = lst[index]
錯誤示例:
spam (1)
dct ['key'] = lst [index]
EXAMPLE:
x = 1
y = 2
long_variable = 3
錯誤示例:
x = 1
y = 2
long_variable = 3
EXAMPLE:
a = b
a or b
# 括號內的操做符不須要空格
name = get_name(age, sex=None, city=Beijing)
EXAMPLE:
# Have to define the param `args(List)`,
# otherwise will be capture the CLI option when execute `python manage.py server`.
# oslo_config: (args if args is not None else sys.argv[1:])
CONF(args=[], default_config_files=[CONFIG_FILE])
EXAMPLE:
x = x + 1 # Compensate for border
EXAMPLE:
# 多行文檔, 首行首字母大寫,結尾的 """ 應該單獨成行
"""Return a foobang Optional plotz says to frobnicate the bizbaz first. """
# 單行的文檔, 結尾的 """ 在同一行。
"""Return a foobang"""
包和模塊名:
包和模塊名應該簡短,所有用小寫字母, 多字母之間可使用單下劃線鏈接。
類名:
遵循駝峯命名
class MyClass(object):
pass
from moduleName import variableName
而被導入的模塊,應採用 __all__
機制來防止全局變量被別的模塊導入, 或者在全局變量名開頭加一個前置下劃線.EXAMPLE:
_name = 'name'
EXAMPLE:
vcenter_connection = ''
EXAMPLE:
MAX_OVERFLOW = ''
TOTAL = 1
__a
, 該屬性是不能以 Foo.__a
的方式訪問的(執著的用戶仍是能夠經過Foo._Foo__a
來訪問), 因此一般雙前置下劃線僅被用來避免與基類的屬性發生命名衝突。None 的比較用 is 或 is not,而不要用 ==
用 is not 代替 not … is, 前者的可讀性更好
EXAMPLE:
# Yes
if foo is not None
# No
if not foo is None
# Yes
def f(x):
return 2*x
# No
f = lambda x: 2*x
異常類應該繼承自Exception,而不是 BaseException
Python 2 中用raise ValueError('message')
代替 raise ValueError, 'message'
(考慮兼容python3和續行的方便性)
捕獲異常時儘可能指明具體異常, 儘可能不用 except Exception
, 應該捕獲 出了什麼問題,而不是 問題發生
EXAMPLE:
# Yes (捕獲具體異常)
try:
import platform_specific_module
except ImportError:
platform_specific_module = None
# No (不要全局捕獲)
try:
import platform_specific_module
except:
platform_specific_module = None
EXAMPLE:
# Yes
try:
value = collection[key]
except KeyError:
return key_not_found(key)
else:
return handle_value(value)
# No
try:
return handle_value(collection[key])
except KeyError:
# 可能會捕捉到 handle_value()中的 KeyError, 而不是 collection 的
return key_not_found(key)
# Yes
def foo():
return None
# No
def foo():
return
使用字符串方法而不是 string 模塊
python 2.0 之後字符串方法老是更快,並且與 Unicode 字符串使用了相同的 API
使用使用 .startswith()
和 .endswith()
代替字符串切片來檢查前綴和後綴
startswith()
和 endswith
更簡潔,利於減小錯誤
EXAMPLE:
# Yes
if foo.startswith('bar'):
# No
if foo[:3] == 'bar':
isinstance()
代替對象類型的比較EXAMPLE:
# Yes
if isinstance(obj, int):
# No
if type(obj) is type(1):
# Yes
if not seq:
pass
if seq:
pass
# No
if len(seq):
pass
if not len(seq):
pass
# Yes
if greeting:
pass
# No
if greeting == True
pass
if greeting is True: # Worse
pass