1. 程式人生 > >Python中常見的命名慣例

Python中常見的命名慣例

變數命名,除了字元為[0-9,A-Z,a-z,_]及不用關鍵字作變數之外,模組名小寫外,還有以下被Python遵循的慣例。

  • _通過互動式模式執行時,會保留最後的結果

>>> for _ in range(5):
...     print(_)
...
0
1
2
3
4
>>> _
4
>>>

備註: 使用"_"在for迴圈中經常使用,避免遍歷的最後一個結果,影響其他變數 

  • _X不會被from module import * 匯入

# FileName: var.py
_X = 100
PI = 3.14
D:\>python
Python 2.7.10 (default, May 23 2015, 09:44:00) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from var import *
>>> print(PI)
3.14
>>> print(_X)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name '_X' is not defined
>>>
  • __X為類的本地變數

  • __X__是系統定義的變數名,對直譯器有特殊的意義

>>> import math
>>> filter(lambda x: x.startswith("__"), dir(math))
['__doc__', '__name__', '__package__']
>>> print(math.__name__)
math
>>> print(math.__doc__)
This module is always available.  It provides access to the
mathematical functions defined by the C standard.
>>>