为什么是这样的结果def a1(x): return x @a1def b1(y): print y print b1(90)90None弱弱的问下,为什么会输出None python [解决办法]a1(b1(90)) 不就是 None 么,你的b1没返回值