码迷,mamicode.com
首页 > 编程语言 > 详细

python 一个包中的文件调用另外一个包文件 实例

时间:2017-05-17 14:17:56      阅读:3673      评论:0      收藏:0      [点我收藏+]

标签:pre   模块   顺序   self   .net   分享   code   调用   9.png   

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 一个包中的文件调用另外一个包文件 实例

标签:pre   模块   顺序   self   .net   分享   code   调用   9.png   

原文地址:http://www.cnblogs.com/yiyezhouming/p/6866773.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!