In the process of learning Python, import is a keyword that I came into contact with earlier. Python has many built-in libraries, which can be used after importing, or imported using pip after installation. Import also organizes the project structure for us. It provides the possibility that when developing a large system, the entire project has many folders and files, which are all connected through import, so it is necessary to understand the working mechanism of import.

1. Basic usage of import
1. Import package name
import os
2. From package Import function
from math import pow
3.Import the package and give it an alias
import math as m
4.Import constants from the package and give it an alias
from math import pi as p
5.Import all the contents in the package
from math import *
Related recommendations: "Python Video Tutorial"
2. The way Python organizes code
1. A file Elements in
If the entire program has only one file, there will be elements such as variables, functions, and classes in this file for operation.
2. Module
Simply speaking, a module is a .py file. For example: there are two files a.py and b.py in the same path, then in a You can import b in .py, and then you can use the variables, functions, and classes in b.py through b.xxx.
3. Package
A simple understanding of a package is a folder containing an __init__.py. For example: there is an a.py file and a b folder in the same path. , there is an __init__.py file in the b folder. Import b in a means importing the package b, which is actually the file __init__.py.

4.__all__
The __all__ variable defined in the __init__.py of the package, so that the package can be called by importing the package name Elements in each file, for example: there is an a.py file and a b folder in the same path, and there are two files __init__.py and c.py in the b folder,
The contents of 
c.py are:
__init__.py’s contents are:
a.py’s contents are:
Run results :
After the program runs, there is an additional __pycache__ folder. When a module is imported for the first time, it is assembled into byte code and the byte code is written into a .pyc with the same name. document. Subsequent import operations will directly read the .pyc file instead of the .py file. (Unless the modification date of the .py file is updated, in this case the .pyc file will be regenerated)

5. Why use .c to import?
The previous a.py can use import b to import elements in b.py. Why can't __init__.py in the b folder import c? Because __init__.py actually represents the folder b, and c is not in the first-level directory with it, so .c must be used to introduce elements in c.py.
6. How to import multi-layer directories?
It is enough to look at the following picture:

3. Search path
When importing the module, The interpreter searches the sys.path list, which contains a list of directories.
sys.path is different in different environments. Python will search for the path of the list in sequence and return after finding it, so the order is very important. The first '' refers to the current directory or the specified Relative path, for example, there is a math.py file in your current directory. When you import math, it is equivalent to importing this math.py file instead of the standard library math.
The above is the detailed content of How to use python's import. For more information, please follow other related articles on the PHP Chinese website!
Python: Automation, Scripting, and Task ManagementApr 16, 2025 am 12:14 AMPython excels in automation, scripting, and task management. 1) Automation: File backup is realized through standard libraries such as os and shutil. 2) Script writing: Use the psutil library to monitor system resources. 3) Task management: Use the schedule library to schedule tasks. Python's ease of use and rich library support makes it the preferred tool in these areas.
Python and Time: Making the Most of Your Study TimeApr 14, 2025 am 12:02 AMTo maximize the efficiency of learning Python in a limited time, you can use Python's datetime, time, and schedule modules. 1. The datetime module is used to record and plan learning time. 2. The time module helps to set study and rest time. 3. The schedule module automatically arranges weekly learning tasks.
Python: Games, GUIs, and MoreApr 13, 2025 am 12:14 AMPython excels in gaming and GUI development. 1) Game development uses Pygame, providing drawing, audio and other functions, which are suitable for creating 2D games. 2) GUI development can choose Tkinter or PyQt. Tkinter is simple and easy to use, PyQt has rich functions and is suitable for professional development.
Python vs. C : Applications and Use Cases ComparedApr 12, 2025 am 12:01 AMPython is suitable for data science, web development and automation tasks, while C is suitable for system programming, game development and embedded systems. Python is known for its simplicity and powerful ecosystem, while C is known for its high performance and underlying control capabilities.
The 2-Hour Python Plan: A Realistic ApproachApr 11, 2025 am 12:04 AMYou can learn basic programming concepts and skills of Python within 2 hours. 1. Learn variables and data types, 2. Master control flow (conditional statements and loops), 3. Understand the definition and use of functions, 4. Quickly get started with Python programming through simple examples and code snippets.
Python: Exploring Its Primary ApplicationsApr 10, 2025 am 09:41 AMPython is widely used in the fields of web development, data science, machine learning, automation and scripting. 1) In web development, Django and Flask frameworks simplify the development process. 2) In the fields of data science and machine learning, NumPy, Pandas, Scikit-learn and TensorFlow libraries provide strong support. 3) In terms of automation and scripting, Python is suitable for tasks such as automated testing and system management.
How Much Python Can You Learn in 2 Hours?Apr 09, 2025 pm 04:33 PMYou can learn the basics of Python within two hours. 1. Learn variables and data types, 2. Master control structures such as if statements and loops, 3. Understand the definition and use of functions. These will help you start writing simple Python programs.
How to teach computer novice programming basics in project and problem-driven methods within 10 hours?Apr 02, 2025 am 07:18 AMHow 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...


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use

Atom editor mac version download
The most popular open source editor






