python模块
程序员文章站
2022-04-23 16:12:56
...
模块:自我包含并且有组织的代码片段
导入(import):把其它模块中属性附加到你的模块的操作
imptee.py
导入(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
上一篇: smarty缓存用法分析_php技巧
下一篇: PHP PDO 使用注意要点