[python]python三元表達式另類實現方式

(1) variable = a if exper else b
(2)variable = (exper and [b] or [c])[0]
(2) variable = exper and b or c 
相關文章
相關標籤/搜索