试题详情

下列程序的运行结果是(  )。 def f(x=2,y=0): return x-y y=f(y=f(),x=5) print(y)

A-3

B3

C2

D5