2017年9月17日 星期日

Python_Note22


Coding Style

程式碼風格(英語:Programming style)即程式開發人員所編寫原始碼的書寫風格。良好程式碼風格的特點是使程式碼易讀。
Python亦有一套規範
PEP 8 -- Style Guide for Python Code
https://www.python.org/dev/peps/pep-0008/

Pycharm已經有提供PEP 8 規範的檢查,只要依照其檢查就可以寫出同一風格的coding style。此外由於google本身也大量使用python來開發程式,所以他們也有提出一套自己的coding style,包括C++跟python等。若一個團隊需要統整編碼風格,那可以參考google這一份,會比自己看PEP 8後再客製化來的快。

Naming

Guidelines derived from Guido's Recommendations
TypePublicInternal
Packageslower_with_under
Moduleslower_with_under_lower_with_under
ClassesCapWords_CapWords
ExceptionsCapWords
Functionslower_with_under()_lower_with_under()
Global/Class ConstantsCAPS_WITH_UNDER_CAPS_WITH_UNDER
Global/Class Variableslower_with_under_lower_with_under
Instance Variableslower_with_under_lower_with_under (protected) or __lower_with_under (private)
Method Nameslower_with_under()_lower_with_under() (protected) or __lower_with_under() (private)
Function/Method Parameterslower_with_under
Local Variableslower_with_under

沒有留言:

張貼留言