須要從新編輯!return
def funA(funB): print "a" return funB@funAdef funB(w): print "b"def funB(w): print "c"funB(1)輸出的是 a c