Fw: [翻譯] Google 建議的 Python 風格指南 11

作者: sandwichC ( )   2013-05-06 21:34:58
※ [本文轉錄自 Python 看板 #1HXx5vrf ]
作者: sandwichC (沒回應=掛站) 看板: Python
標題: [翻譯] Google 建議的 Python 風格指南 11
時間: Mon May 6 21:34:46 2013
原文網址:http://google-styleguide.googlecode.com/svn/trunk/pyguide.html
* 條件表達式
可以使用單行的條件表達式。
釋義:
條件表達式提供較簡短的 if 句法,如: x = 1 if condition else 2.
優合:
較 if 敘述簡短而且方便。
缺點:
可能較 if 敘述難閱讀。當 if 敘述較長時可能不太合適。
決策:
當條件表達式能在一行內完成時,可以使用它們。其他狀況則使用一般的 if 敘述。

Links booklink

Contact Us: admin [ a t ] ucptt.com