《Head First Python》學習筆記02 模組和函數參數預設值

來源:互聯網
上載者:User

模組:

       模組是一個包含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列印完後不換行。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.