免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3936 | 回复: 2
打印 上一主题 下一主题

all(),any()的矛盾 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-10-09 10:13 |只看该作者 |倒序浏览
本帖最后由 mihello 于 2012-10-09 10:14 编辑
  1. >>> all([])
  2. True
  3. >>> help(all)
  4. Help on built-in function all in module builtins:

  5. all(...)
  6.     all(iterable) -> bool
  7.    
  8.     Return True if bool(x) is True for all values x in the iterable.

  9. >>> any([])
  10. False
  11. >>> help(any)
  12. Help on built-in function any in module builtins:

  13. any(...)
  14.     any(iterable) -> bool
  15.    
  16.     Return True if bool(x) is True for any x in the iterable.
复制代码
空列表的all居然为真,而any为假这个正确。
这为毛了??求解

论坛徽章:
0
2 [报告]
发表于 2012-10-09 17:02 |只看该作者
http://stackoverflow.com/questio ... for-empty-iterables

以前还没深究过,这个问题挺好

论坛徽章:
4
水瓶座
日期:2013-09-06 12:27:30摩羯座
日期:2013-09-28 14:07:46处女座
日期:2013-10-24 14:25:01酉鸡
日期:2014-04-07 11:54:15
3 [报告]
发表于 2012-10-11 22:38 |只看该作者
没有原因, 只有手册:
  1. all(iterable)
  2. Return True if all elements of the iterable are true (or if the iterable is empty). Equivalent to:

  3. def all(iterable):
  4.     for element in iterable:
  5.         if not element:
  6.             return False
  7.     return True
  8. any(iterable)
  9. Return True if any element of the iterable is true. If the iterable is empty, return False. Equivalent to:

  10. def any(iterable):
  11.     for element in iterable:
  12.         if element:
  13.             return True
  14.     return False
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP