Python中 import 用法
程序员文章站
2024-03-12 19:28:08
...
一、基本用法
1、需要加前缀
import module_name
# 使用时需要在变量或函数前加 module_name. 这个前缀
import module_name as m
# 使用时需要在变量或函数前加 m. 这个前缀
2、无需加前缀
#从模块t中导入变量a,b
from t import a,b
#将模块t中所有的变量和函数都导出
from t import *