欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python笔记-cmp、type、isinstance

程序员文章站 2022-05-15 10:22:00
...

示例:

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