Python核心编程——第四章

2016-08-07  本文已影响0人  VictorLiao

4-4

>>> a = 1
>>> type(a)
<type 'int'>
>>> type(type(a))
<type 'type'>

4-5

4-6

>>> a = 5.0
>>> a == 5
True
>>> a is 5
False
from types import IntType
if type(num) is IntType...

if isinstance(num, int)...

4-8

上一篇 下一篇

猜你喜欢

热点阅读