1 if x < y: 2 small = x 3 else : 4 small = y
这段代码很简单,但是用三元操作符怎么写呢?
三元操作符语法:
a = x if 条件 else y
表示当条件为True的时候,a被赋值为x,否则被赋值为y。
所以,可以改进代码:
1 small = x if x < y else y
但是这种对于分支少的情况好用,对于分支多的情况,看起来头大,可读性差。
比如对成绩分等级的那个需求,写出来就是下面这样式儿的:
1 #p4_4.py 2 score = int (input('Please input a score: ')) 3 s1 = 'Your grade is ' 4 5 grade = 'A' if 90 <= score <= 100 else 'B' if 80 <= score < 90 else 'C' if 60 <= score < 80 else 'D' if 0 <= score < 60 else print('Please input 0~100 number!') 6 print(s1 + grade)
咱就是说,仔细看也不是看不懂,但是多少有点费眼。先不说别人,自己隔三天回来看都会觉得头懵。