手机
当前位置:查字典教程网 >脚本专栏 >python >Python 不同对象比较大小示例探讨
Python 不同对象比较大小示例探讨
摘要:万恶的源泉:Fireboo的疑问(当然lambda本身写的就有问题):>>>filter(lambdax:x>2,[1,[1,2,3],2,...

万恶的源泉:

Fireboo的疑问(当然 lambda 本身写的就有问题):

>>> filter( lambda x: x > 2, [ 1, [ 1, 2, 3 ], 2, 3 ] ) [[1, 2, 3], 3]

?:

>>> 1 < [ 1 ] True >>> int < list True >>> dict < int < list True

>>> int < map False

后来几经周折,和 Fireboo 讨论了下,是

1.不同对象比较(除了 number 之外),是按照 type names 比较,

2.当相同类型对象不支持适当比较的时候,采用 address 比较

3.list 与 list, tuple 与 tuple 采用字典序比较

>>> x = 1 >>> y = [ 1 ] >>> type( x ) <type 'int'> >>> type( y ) <type 'list'> >>> x < y True

>>> type( int ) <type 'type'> >>> type( list ) <type 'type'> >>> id( int ) 505552912 >>> id( list ) 505555336 >>> int < list True

>>> type( map ) <type 'builtin_function_or_method'> >>> type( list ) <type 'type'> >>> map < list True

【Python 不同对象比较大小示例探讨】相关文章:

python实现图片批量剪切示例

python 合并文件的具体实例

Python 异常处理实例详解

Python 文件和输入输出小结

Python中for循环详解

python使用内存zipfile对象在内存中打包文件示例

Python 面向对象 成员的访问约束

python中的对象拷贝示例 python引用传递

Python pass 语句使用示例

python动态加载变量示例分享

精品推荐
分类导航