Python從菜鳥到高手(4):匯入Python模組

來源:互聯網
上載者:User

標籤:blog   load   調用函數   ref   geek   android   editor   直接   cto   

在Python代碼中匯入模組需要使用import語句,文法結構如下:

import module_name

??引用模組中函數的文法如下:

module_name.function_name

??如果在Python程式中大量使用模組中的某些函數,那麼每次在調用函數時都要加上“模組名”顯得有些麻煩,所以在這種情況下,可以使用from…import…語句將模組中的函數直接暴露出來。該語句的文法結構如下:

from module_name import function_name

??如果要想匯入模組中的所有函數,可以將function_name替換成型號(*),這樣我們就可以直接使用該模組中的所有函數了。

from module_name import *

??另外,import和from…import…語句可以寫在Python代碼中的任何位置,但一定要在引用相應模組函數之前執行import或from…import…語句,否則調用函數時會拋出異常。

??下面的代碼使用import和from…import…語句分別引用了math模組和math模組中的sqrt函數。如果要調用math模組中的其他函數,必須在函數名前加上“math.”首碼,但可以直接調用sqrtFunction Compute數值的平方根。

print("import和from...import...示範")# 匯入math模組import mathprint(math.floor(20.6))# 匯入math模組中的sqrt函數from math import sqrtprint(sqrt(12))# 匯入math模組中的所有函數from math import *print(sin(3.14/2))

程式運行結果如所示。

《Python從菜鳥到高手》已經出版,購買送視頻課程

Python從菜鳥到高手(4):匯入Python模組

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.