当前位置:Gxlcms > Python > python模块

python模块

时间:2021-07-01 10:21:17 帮助过:55人阅读

模块:自我包含并且有组织的代码片段
导入(import):把其它模块中属性附加到你的模块的操作

imptee.py

Python代码

foo='abc'  
def show():  
    print 'foo from imptee:',foo  
impter.py

Python代码

import imptee  
from imptee import foo,show  
show()  
foo = 123  
print 'foo from impter:',foo  
show()  
print 'imptee.foo:',imptee.foo  
foo from imptee: abc foo from impter: 123 foo from imptee: abc imptee.foo: abc

人气教程排行