Python源碼閱讀:type

首先看一個例子: 1 >>> a = 1 2 >>> a 3 1 4 >>> type(a) 5 <type 'int'> 6 >>> type(type(a)) 7 <type 'type'> 8 >>> type(int) 9 <type 'type'> 10 >>> type(type(type(a))) 11 <type 'type'> 12 >>> type(type(
相關文章
相關標籤/搜索