需要重新编辑!
def funA(funB): print "a" return funB@funAdef funB(w): print "b"def funB(w): print "c"funB(1)输出的是 a c