1、python模块(module),是一个python文件以.py结尾,包含了python对象定义和python

语句

例如,下面就是一个test_module.py模块

def print_fun(arg):
print('hello', arg)
return

2、import语句:模块的引入

import test_module


if __name__ == '__main__':
test_module.print_fun('test')

 python模块_python模块

3、from.....import语句:

from test_module import print_fun


if __name__ == '__main__':
print_fun('test')

 python模块_python模块_02