模組:
模組是一個包含Python代碼的文字檔。使用import可以將模組匯入到其他程式中。
每個模組都有自己的命名空間。主Python程式中的代碼與一個名為__main__的明明空間關聯。將代碼放在其單獨的模組中時,Python自動建立一個與模組同名的命名空間。
使用module.function()形式調用模組的函數時,要用命名空間限定函數。使用import語句的from module import function形式可以從一個模組將函數專門匯入到當前的命名空間。
內建函數的命名空間為__builtins__,會自動包含在每一個Python程式中。
注釋:
使用#可以添加單行注釋。
使用三雙引號或三單引號可以添加一大段注釋。
'''用三雙引號或三單引號表示的一大段字串如果沒與一個變數關聯,它就是注釋。如果與一個變數關聯,它就是字串'''
函數參數預設值:
定義函數時為函數參數提供一個預設值,這個參數就變成可選的了。
內建函數print就用到了參數預設值。在shell中鍵入help(print)。
print(...)
print(value, ..., sep=' ', end='\n', file=sys.stdout)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
發現print有三個參數。用end=''調用print可以改變print列印字串後預設添加換行的行為。使print列印完後不換行。