导入整个模块:
import module_name
module_name.function() //使用模块的函数
导入模块中的特定函数:
from module_name import function_name
使用逗号分隔函数名,根据需要从模块中导入任意数量的函数:
from module_name import function_0,function_1,function_2
导入整个模块:
import module_name
module_name.function() //使用模块的函数
导入模块中的特定函数:
from module_name import function_name
使用逗号分隔函数名,根据需要从模块中导入任意数量的函数:
from module_name import function_0,function_1,function_2
本文标题:python导入模块
本文链接:https://www.haomeiwen.com/subject/siuhpqtx.html
网友评论