代码
提交代码
def max(a, b): if a > b: print(a) else: print(b) max(1, 2) max(20, 10)
运行结果