试题详情

def max(a,b) : if a > b : return a else : return b 能成功调用该Python函数的语句是

Amax(,5)

Bmax(-1)

Cmax(5,-1)

Dmax(5,-1,3)