"""三元表达式"""#针对以下需求def func(x,y): if x > y : return x else: return yres=func(33,44)print(res)#三元表达式#语法格式:#条件成立的返回值 if 条件 else 条件不成立要返回的值x=1y=2res = x if x > y else yprint(res)