python笔记-cmp、type、isinstance

示例:

IDLE 2.6.4rc2     
>>> type(4)
<type 'int'>
>>> cmp(3,2)
1
>>> cmp(20,30)
-1
>>> str(564.5154)
'564.5154'
>>> repr([21,54,8,9])
'[21, 54, 8, 9]'
>>> isinstance('iioo',(str))
True
>>> isinstance(32434,(int))
True
>>> isinstance('safasdf',(int,long))
False

你可能感兴趣的:(python)