来源:MTWen
python中没有其他语言中的三元表达式,但是有类似的实现方法
格式:[on_true] if [expression] else [on_false]
res = 值1 if 条件 else 值2
a = 111
b = 555
res = ""
res = "我是帅的" if a>b else "你是帅的"
print(res)
运行结果:
你是帅的
也可以使用简单的公式
a = 111
b = 555
res = ""
res = a-b if a>b else a+b
print(res)
运行结果:
666