python中使用import 和 from語法來實現其它語言中的include功能。

示例:
文件c.py
def fun():
print "A function."
str="A String"

文件a.py
from c import *
fun()
print str
輸出:
A function.
A String

文件b.py
import c
c.fun()
print c.str
輸出:
A function.
A Stringtornado

 

若是要用class直接調用,調用from c import *就能夠了,好比tornadoio

相關文章
相關標籤/搜索