def xy(x,y): if x ==4: return x,y else: xy(x+1, y+1) c = xy(1,2) print(c) 输出为 None 谁能给我解释下 为啥 c =None,解释详细点,就当我是个农民的水平,哈哈