def max(x, y): if x >=y: return x else: return y print(max(4, 7)) z = max(8, 5) print(z) 结果: >>> 7 8 >>>
0