變量
Python 的變量,是下劃線(_)和英文數字的名稱。最開始1文字必須是下劃線(_)或者字母。
value1 = 123
_value1 = 123
test_value = 123
TEST_VALUE = 123
常量
Python不支持常量類型。習慣性的大寫字母和下劃線(_)的變量來命名。
PI = 3.14
MAX_BUFFER_SIZE = 1024
文檔引用(__doc__)
module的開始,class的開始,函數的開始用三重雙引號 """...""" 的注釋、作為文檔注釋 __doc__ 可以參照注釋內容。
mymod.py
Python
"""A sample module"""
class MyClass:
"""A sample class"""
def myfunc(self, x, y):
"""A sample function"""
return x + y
mytest.py
Python
import mymod
print mymod.__doc__ #=> A sample module
print mymod.MyClass.__doc__ #=> A sample class
print mymod.MyClass.myfunc.__doc__ #=> A sample function
help()也可以訪問到注釋。
Linux
$ python
>>> import mymod
>>> help(mymod)
Help on module mymod:
NAME
mymod - A sample module
FILE
/root/mymod.py
CLASSES
MyClass
class MyClass
| A sample class
|
| Methods defined here:
|
| myfunc(self, x, y)
| A sample function
Now I will introduce you to us
Install in company Python+sele