


Analyze Python's method of importing modules in different levels of directories
This article mainlyintroducespython Methods of importing modules in different levels of directories, friends in need can refer to it
When using python for programming, Third-party module packages are often used. We can install this kind of package through python setup install and then import it through import XXX or from XXX import yyy. However, if it is a dependent package written by yourself and you do not want to install it in the corresponding directory of python, you can put it in this directory and import it for calling; in order to clarify the relationship between programs more clearly, for example, we will put this kind of package in Go to the lib directory and call again. This article summarizes common module calling methods.
1. The tunes in the same directory are
The program structure is as follows:
-- src
|-- mod1 .py
|-- test1.py
If you import the module mod1 in the program test1.py, directly use
import mod1
or
from mod1 import *;
2. Call the module in the subdirectory
The program structure is as follows:
-- src
| -- mod1.py
|-- lib
| |-- mod2.py
|-- test1.py
Now you see the test1.py and lib directories (That is, the parent directory of mod2.py). If you want to import the module mod2.py into the program test1.py, you can create an empty file init.py file in the lib folder (you can also define it yourself in this file) Output moduleInterface), then use:
or
import lib.mod2.
3. Call the file in the upper directory
The program structure is as follows:
|-- mod1.py
|- - lib
|-- mod2.py
|-- sub
|-- test2.py
Here I want to implement test2.py calling mod1.py and mod2.py, the method is that we first jump to the src directory, directly call mod1, and then create an empty file init.py on the lib, and then import lib just like the second step of calling the module in the subdirectory. mod2 is called. The specific code is as follows:
1 2 3 4 |
|
The above is the detailed content of Analyze Python's method of importing modules in different levels of directories. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

When using Python's pandas library, how to copy whole columns between two DataFrames with different structures is a common problem. Suppose we have two Dats...

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

How does Uvicorn continuously listen for HTTP requests? Uvicorn is a lightweight web server based on ASGI. One of its core functions is to listen for HTTP requests and proceed...

In Python, how to dynamically create an object through a string and call its methods? This is a common programming requirement, especially if it needs to be configured or run...

Using python in Linux terminal...

Understanding the anti-crawling strategy of Investing.com Many people often try to crawl news data from Investing.com (https://cn.investing.com/news/latest-news)...
