概述
Python module
A module is a collection of functions and variables that have been bundled together in a single file.
working with the functions defined in modules
导入: import my_module 使用: my_module.some_function() 当模块名字太长时,导入: import my_module as m 使用: m.function1() 当模块包含的function太多,而只需使用其中几个时: from my_module import function1 使用: function1() 缺点是导入的这个function前不加模块前缀后,能被重写 导入所有function和object: from my_module import * 使用: function1() 缺点是会污染global namespace内部执行如下:
working with the variables defined in modules
导入: import math 使用: print(math.pi) 模块中variables的使用类似functions最后
以上就是隐形大白为你收集整理的【PYTHON】模块(module)使用的全部内容,希望文章能够帮你解决【PYTHON】模块(module)使用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复