import(important)

网友投稿 256 2022-08-27


import(important)

模块本质就是从逻辑上组织PYTHON代码(变量,函数,类)实现功能一个.py的文件

包本质就是包含了__init__.py的文件的目录 其作用是组织模块文件

import模块的本质就是将模块test.py文件解释执行一下

import包的本质就是解释执行一下__init__.py文件

import test ,test1

from test import *

from test import bin,fun (变量或函数)

from test import fun as fun1

导入到模块的上层目录(包)sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:python 树深度遍历 和广度遍历(python能做什么)
下一篇:python *args **kwargs(python能做什么)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~