创建一个模块

模块是包含定义和语句的可导入文件。

可以通过创建 .py 文件来创建模块。

# hello.py
def say_hello():
    print("Hello!")

可以通过导入模块来使用模块中的功能。

对于你创建的模块,它们需要与你将其导入的文件位于同一目录中。 (但是,你也可以使用预先包含的模块将它们放入 Python lib 目录中,但如果可能,应该避免使用它们。)

$ python
>>> import hello
>>> hello.say_hello()
=> "Hello!"

模块可以由其他模块导入。

# greet.py
import hello
hello.say_hello()

可以导入模块的特定功能。

# greet.py
from hello import say_hello
say_hello()

模块可以别名。

# greet.py
import hello as ai
ai.say_hello()

模块可以是独立的可运行脚本。

# run_hello.py
if __name__ == '__main__':
    from hello import say_hello
    say_hello()

运行!

$ python run_hello.py
=> "Hello!"

如果模块位于目录中并且需要由 python 检测,则该目录应包含名为 __init__.py 的文件。