Home  >  Article  >  Backend Development  >  python module

python module

巴扎黑
巴扎黑Original
2016-12-09 14:32:511267browse

Modules: self-contained and organized snippets of code
Import: the operation of appending properties from other modules to your module

imptee.py

Python code

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

Python code

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


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn