<bdo id='ObTMp'></bdo><ul id='ObTMp'></ul>
  • <small id='ObTMp'></small><noframes id='ObTMp'>

  • <tfoot id='ObTMp'></tfoot>
    <i id='ObTMp'><tr id='ObTMp'><dt id='ObTMp'><q id='ObTMp'><span id='ObTMp'><b id='ObTMp'><form id='ObTMp'><ins id='ObTMp'></ins><ul id='ObTMp'></ul><sub id='ObTMp'></sub></form><legend id='ObTMp'></legend><bdo id='ObTMp'><pre id='ObTMp'><center id='ObTMp'></center></pre></bdo></b><th id='ObTMp'></th></span></q></dt></tr></i><div id='ObTMp'><tfoot id='ObTMp'></tfoot><dl id='ObTMp'><fieldset id='ObTMp'></fieldset></dl></div>

    <legend id='ObTMp'><style id='ObTMp'><dir id='ObTMp'><q id='ObTMp'></q></dir></style></legend>

      1. 计算 Python 列表中真正布尔值的数量

        Counting the number of True Booleans in a Python List(计算 Python 列表中真正布尔值的数量)
          <bdo id='PZzUD'></bdo><ul id='PZzUD'></ul>

                <i id='PZzUD'><tr id='PZzUD'><dt id='PZzUD'><q id='PZzUD'><span id='PZzUD'><b id='PZzUD'><form id='PZzUD'><ins id='PZzUD'></ins><ul id='PZzUD'></ul><sub id='PZzUD'></sub></form><legend id='PZzUD'></legend><bdo id='PZzUD'><pre id='PZzUD'><center id='PZzUD'></center></pre></bdo></b><th id='PZzUD'></th></span></q></dt></tr></i><div id='PZzUD'><tfoot id='PZzUD'></tfoot><dl id='PZzUD'><fieldset id='PZzUD'></fieldset></dl></div>

                <tfoot id='PZzUD'></tfoot>

                <small id='PZzUD'></small><noframes id='PZzUD'>

                  <legend id='PZzUD'><style id='PZzUD'><dir id='PZzUD'><q id='PZzUD'></q></dir></style></legend>
                    <tbody id='PZzUD'></tbody>
                  本文介绍了计算 Python 列表中真正布尔值的数量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个布尔值列表:

                  [True, True, False, False, False, True]
                  

                  我正在寻找一种方法来计算列表中 True 的数量(因此在上面的示例中,我希望返回为 3.)我已经找到了查找特定元素出现次数的示例,但是由于我正在使用布尔值,是否有更有效的方法来做到这一点?我正在考虑类似于 allany 的东西.

                  and I am looking for a way to count the number of True in the list (so in the example above, I want the return to be 3.) I have found examples of looking for the number of occurrences of specific elements, but is there a more efficient way to do it since I'm working with Booleans? I'm thinking of something analogous to all or any.

                  推荐答案

                  True 等于 1.

                  >>> sum([True, True, False, False, False, True])
                  3
                  

                  这篇关于计算 Python 列表中真正布尔值的数量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Initialize Multiple Numpy Arrays (Multiple Assignment) - Like MATLAB deal()(初始化多个 Numpy 数组(多重赋值) - 像 MATLAB deal())
                  How to extend Python class init(如何扩展 Python 类初始化)
                  What#39;s the difference between dict() and {}?(dict() 和 {} 有什么区别?)
                  What is a wrapper_descriptor, and why is Foo.__init__() one in this case?(什么是 wrapper_descriptor,为什么 Foo.__init__() 在这种情况下是其中之一?)
                  Initialize list with same bool value(使用相同的布尔值初始化列表)
                  setattr with kwargs, pythonic or not?(setattr 与 kwargs,pythonic 与否?)
                  • <bdo id='LgUfV'></bdo><ul id='LgUfV'></ul>
                      • <tfoot id='LgUfV'></tfoot>
                      • <legend id='LgUfV'><style id='LgUfV'><dir id='LgUfV'><q id='LgUfV'></q></dir></style></legend>

                            <tbody id='LgUfV'></tbody>

                          <small id='LgUfV'></small><noframes id='LgUfV'>

                            <i id='LgUfV'><tr id='LgUfV'><dt id='LgUfV'><q id='LgUfV'><span id='LgUfV'><b id='LgUfV'><form id='LgUfV'><ins id='LgUfV'></ins><ul id='LgUfV'></ul><sub id='LgUfV'></sub></form><legend id='LgUfV'></legend><bdo id='LgUfV'><pre id='LgUfV'><center id='LgUfV'></center></pre></bdo></b><th id='LgUfV'></th></span></q></dt></tr></i><div id='LgUfV'><tfoot id='LgUfV'></tfoot><dl id='LgUfV'><fieldset id='LgUfV'></fieldset></dl></div>