首页 > 代码库 > python 一个包中的文件调用另外一个包文件 实例
python 一个包中的文件调用另外一个包文件 实例
python不同文件夹中模块的引用调用顺序,被调用的模块中①有类的 模块.类().方法() ②无类的:模块.方法()
test包中testIm.py 调用 test1包中testIm1.py中的方法craw1()方法,输出结果:
testIm.py
# coding:utf-8
# testIm.py位于test包中,要调用test1包中的testIm1.py中的方法craw1()方法
import sys sys.path.append(‘C:\\pythonwork\\test1‘) #加入路径,添加目录
# print sys.path import testIm1 class Test_Im(object): def craw(self): print ‘This is testIm‘ testIm1.Test_Im1().craw1() if __name__ == ‘__main__‘: im = Test_Im() im.craw()
testIm1.py
#coding:utf-8
# testIm1.py位于test1包中
class Test_Im1(object): def craw1(self): print ‘This is testIm1‘ if __name__ == ‘__main__‘: im = Test_Im1() im.craw1()
参考: python 不同文件夹中模块的引用
python 一个包中的文件调用另外一个包文件 实例
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。