Python条件表达式 2017-07-24 本文已影响0人 Cytosine min = x if x < y else y 相当于 x,y = 4,5 if x < y: min = x else: min = y