About the module in Python

Source: Internet
Author: User

The module in Python, the concept and the use of the following main points to note:

(1)when import xx, the code in this XX module will be executed once (and executed only once):

For example:

(2) module package :

(3) importing can import objects from other modules (objects include: functions, global variables)

Import module_name     #module_name. Foo () to call module_name in the Foo function  import package_name    #如果package_name中__ init__.py file to import the specific module module_name, then you can use the Package_name.module_name function in Module_name, otherwise it is not the  import Package_ Name.module_name  #package_name. Module_name.foo ()  represents the use of the Foo function in Module_name from the  package_name import Module_name  #module_name. Foo ()  means the Foo function using module_name from  package_name.module_name import foo        # Direct use of Foo () is fine.  

Remark:import Module_name.foo is illegal

Reference Link: http://blog.csdn.net/wangjianno2/article/details/47375439

About the module in Python

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.