您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Python中提高代碼效率技巧是怎么樣的,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
對象相等。您認為type(a) == type(b)和type(a) is type(b)之間的不同是什么?為什么會選擇后者?函數isinstance()與這有什么關系?
在例4.1 中我們提供了一段腳本來演示在運行時環境使用isinstance() 和 type()函數。隨后我們討論type()的使用以及怎么將這個例子移植為改用 isinstance()。運行 typechk.py, 我們會得到以下輸出:
-69 is a number of type: int 9999999999999999999999 is a number of type: long 98.6 is a number of type: float (-5.2+1.9j) is a number of type: complex xxx is not a number at all!!
例4.1 檢查類型(typechk.py)函數displayNumType() 接受一個數值參數,Python技巧中使用內建函數type()來確認數值的類型(或不是一個數值類型)。
#!/usr/bin/env python def displayNumType(num): print num, 'is', if isinstance(num, (int, long, float, complex)): print 'a number of type:', type(num).__name__ else: print 'not a number at all!!' displayNumType(-69) displayNumType(9999999999999999999999L) displayNumType(98.6) displayNumType(-5.2+1.9j) displayNumType('xxx')
關于Python中提高代碼效率技巧是怎么樣的就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。