來源:互聯網 閱讀:-
引言:每天習以為常的Python代碼,是否符合Python的規(guī)范?想寫出Pytonic風格的代碼,卻不知道如何開始?
這個“Python代碼規(guī)范”系列將會解決這些規(guī)范性的問題。
注:本代碼規(guī)范基于PEP8, 在PEP8的基礎上做了一些改動。
Python代碼規(guī)范
注釋和文檔
代碼注釋和文檔(docstring)的規(guī)范,參考并綜合了PEP257、Google Python Style Guide和Numpy的文檔標準。
注釋
app = create_app(name, options)
# =====================================
# 請勿在此處添加 get post等app路由行為 !!!
# =====================================
if __name__ == '__main__':
app.run()
文檔注釋(Docstring)
作為文檔的Docstring一般出現在模塊頭部、函數和類的頭部,這樣在python中可以通過對象的doc對象獲取文檔。編輯器和IDE也可以根據Docstring給出自動提示。
# -*- coding: utf-8 -*-
"""Example docstrings.
This module demonstrates documentation as specified by the `Google Python
Style Guide`_. Docstrings may extend over multiple lines. Sections are created
with a section header and a colon followed by a block of indented text.
Example:
Examples can be given using either the ``Example`` or ``Examples``
sections. Sections support any reStructuredText formatting, including
literal blocks::
$ python example_google.py
Section breaks are created by resuming unindented text. Section breaks
are also implicitly created anytime a new section starts.
"""
# 不推薦的寫法(不要寫函數原型等廢話)
def function(a, b):
"""function(a, b) -> list"""
... ...
# 正確的寫法
def function(a, b):
"""計算并返回a到b范圍內數據的平均值"""
... ...
def func(arg1, arg2):
"""在這里寫函數的一句話總結(如: 計算平均值).
這里是具體描述.
參數
----------
arg1 : int
arg1的具體描述
arg2 : int
arg2的具體描述
返回值
-------
int
返回值的具體描述
參看
--------
otherfunc : 其它關聯函數等...
示例
--------
示例使用doctest格式, 在`>>>`后的代碼可以被文檔測試工具作為測試用例自動運行
>>> a=[1,2,3]
>>> print [x + 3 for x in a]
[4, 5, 6]
"""
To be continued.
推薦閱讀:米家感應夜燈