Cross-package reference of Python

Source: Internet
Author: User

Cross-package reference method of Python

Assume that the package hierarchy is as follows:

Package1/_ init _. py subpack1/_ init _. py module_11.py module_12.py module_13.py subpack2/_ init _. py module_21.py module_22.py

Now, if module_21 in subpack2 needs to reference funca of module module_11 in subpack1, the reference syntax is:

From subpack1.module _ 11 import funca

However, this reference has a disadvantage: When the module module_21 runs in the IF _ name __= = "_ main _" mode, the following error occurs:

No module named subpack1.module _ 11

Other scripts can only be run in the IF _ name __= = "_ main _" Mode Under the package1 directory.

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.