Python模組和包

來源:互聯網
上載者:User

標籤:python

模組概述

如果說模組是按照邏輯來組織 Python 代碼的方法, 那麼檔案便是物理層上組織模組的方法。
因此, **一個檔案被看作是一個獨立模組, 一個模組也可以被看作是一個檔案。 模組的檔案名稱就是模
塊的名字加上副檔名 .py 。 與其它可以匯入類(class)的語言不同,在 Python 中你匯入的是模組或模組屬性**。

模組名稱空間

一個名稱空間就是一個名稱到對象的關係映射.

匯入模組匯入模組整體(import)

方式一

import module1import module2...import moduleN

方式二

import module1[, module2[,... moduleN]]
匯入模組屬性(from … import …)

調用 from-import 可以把名字匯入當前的名稱空間裡去, 這意味著你不需要使用屬性/句點屬性標識來訪問模組的標識符。 例如, 你需要訪問模組 module 中的 var 名字是這樣被匯入的:

from module import name1[, name2[,… nameN]]

模組或屬性匯入後重新命名
import ... as ...from ... import ... as ...

包是一個有層次的檔案目錄結構, 模組對應單個檔案,包對應一個目錄.與 類 和 模 塊 相 同 , 包 也 使 用 句 點 屬 性 標 識 來 訪 問 他 們 的 元 素。使 用 標 准 的 import 和from-import 語句匯入包中的模組。

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.