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