下面代码的输出结果是( )
>>>f=lambda x,y:y+x

下面代码的输出结果是( )
>>>f=lambda x,y:y+x
>>>f(10,10)

A.100

B.10

C.20

D.10,10

正确答案是C