回到首页
个人中心
反馈问题
注册登录
下载APP
代码
提交代码
def max(a, b): if a > b: print(a) else: print(b) max(1, 2) max(20, 10)
运行结果