python——if

來源:互聯網
上載者:User

python中的if很靈活,他可以判斷所有的資料類型,根據資料類型的不同,來判定if的結果,通常可以理解為:資料類型的預設初始值都是False的!見如下測試結果,首先是資料類型列舉:

>>> type(0L)<type 'long'>>>> type(0.0)<type 'float'>>>> type(0)<type 'int'>>>> type('')<type 'str'>>>> type("")<type 'str'>>>> type([])<type 'list'>>>> type({})<type 'dict'>>>> type(())<type 'tuple'>>>> type(False)<type 'bool'>>>> type(None)<type 'NoneType'>

然後是if判定的結果(其中tuple比較特別,因為它本身是通過"()"來標記的,而在文法上"()"又有其他用途,所以要特殊處理,詳見下面代碼):

>>> if 0:...     print 0... >>> if 1:...     print 1... 1>>> if 0.0:...     print 0.1... >>> if 0.1:...     print 0.1... 0.1>>> if 0L:...     print 0L... >>> if 1L:...     print 1L... 1>>> if '':...     print 'empty'... >>> if ' ':...     print 'blank'... blank>>> if []:...     print []... >>> if [0]:...     print [0]... [0]>>> if None:...     print None>>> t = ()>>> type(t)<type 'tuple'>>>> if t:...     print t... >>> t1 = (0)>>> type(t1)<type 'int'>>>> t2 = (0,)>>> type(t2)<type 'tuple'>>>> if t2:...     print t2... (0,)


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.