python ternary if-else operator三元运算符 python ternary if-else operator三元运算符a if test else b #如果test为真则返回a,否则返回b#小甲鱼习题:x, y, z = 6, 5, 4,用三元运算符找出最小值x, y, z = 6, 5, 4x if (x < y and x < z) else (y if y < z else z)