账号密码登录
微信安全登录
微信扫描二维码登录

登录后绑定QQ、微信即可实现信息互通

手机验证码登录
找回密码返回
邮箱找回 手机找回
注册账号返回
其他登录方式
分享
  • 收藏
    X
    python filter函数疑惑
    • 2019-11-16 00:00
    • 11
    23
    0

    不多说,直接贴代码,代码非常短

    print(list(filter(None,[1,2,3,0,0,-1,4,-6,5])))

    刚开始我自己认为输出应该是

    [1, 2, 3, 4, 5]

    但是实际输出却是

    [1, 2, 3, -1, 4, -6, 5]

    我的疑惑就是为什么这里的-1,-6也会输出,filter帮助文档里明明写的
    Return an iterator yielding those items of iterable for which function(item) is true.

    If function is None, return the items that are true

    这里的-1,-6为什么会是True?

    0
    打赏
    收藏
    点击回答
    您的回答被采纳后将获得:提问者悬赏的 11 元积分
        全部回答
    • 0
    • 黄二两 普通会员 1楼
      502 Bad Gateway

      502 Bad Gateway


      nginx
    更多回答
    扫一扫访问手机版
    • 回到顶部
    • 回到顶部