python中有三目运算符吗? 当然!
# the_true_result 表示条件为真时的结果
# the_condition 表示判断的条件
# the_false_result 表示条件为假时的结果
the_true_result if the_condition else the_false_result
例如: 输出x,y中较大的数值
print(x if(x>y) else y)
对比java,c#等语言的三目运算符
x>y?x:y
python中有三目运算符吗? 当然!
# the_true_result 表示条件为真时的结果
# the_condition 表示判断的条件
# the_false_result 表示条件为假时的结果
the_true_result if the_condition else the_false_result
例如: 输出x,y中较大的数值
print(x if(x>y) else y)
对比java,c#等语言的三目运算符
x>y?x:y