python导入模块特定函数,python中调用什么模块的什么函数
1、导入整个模块中的函数和变量,代码:
》创建模块say_hello.py文件:
# file:say _ hello。pydef say _ hi():print(你好,我是伊斯米利!)name=ISmileLi 》.使用模块say_hello.py如下:
# file:use _ say _ hello。py导入say _ hello say _ hello。say _ hi()get _ name=say _ hello。姓名打印(获取姓名)运行结果:
2、导入模块中的某个函数或者变量
# file:use _ say _ hello _ func _ attr。py从say _ hello导入say _ hi,namesay_hi()print(name)运行结果同一
3、导入模块中的所有函数和变量
# file:import _ say _ hello _ all from say _ hello import * say _ hi()print(name)运行结果同一
4、导入模块时使用如同给模块取别名
# file:给定模式新名称。py import say _ hello as shsh。say _ hi()print(sh。姓名)运行结果同一
5、导入函数时使用如同给函数或者变量取别名
》函数取别名
# file:give _ func _ new _ name。py from say _ hello import say _ hi as hihi()运行结果:
》变量取别名
# file:give _ func _ new _ name。来自say _ hello的py将名称导入为我的名字打印(我的名字)运行结果:
说明:如有错误,欢迎指正。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。