以下是比较两个数的大小的函数,输出结果为?( ) def fun(a, b, c): if a > b: c = a else: c = b print(fun(1, 2, 3))
1
2
3
None