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

      • <bdo id='xXiTv'></bdo><ul id='xXiTv'></ul>

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

        检查 Python 列表中是否有(不)某些东西

        时间:2023-08-29
        • <bdo id='EcHuO'></bdo><ul id='EcHuO'></ul>

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

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

                  <tfoot id='EcHuO'></tfoot>

                • 本文介绍了检查 Python 列表中是否有(不)某些东西的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个 Python 中的元组列表,并且我有一个条件仅当元组不在列表中时,我才想采用分支(如果它在列表中,那么我不想采用 if 分支)

                  I have a list of tuples in Python, and I have a conditional where I want to take the branch ONLY if the tuple is not in the list (if it is in the list, then I don't want to take the if branch)

                  if curr_x -1 > 0 and (curr_x-1 , curr_y) not in myList: 
                  
                      # Do Something
                  

                  不过,这对我来说并不适用.我做错了什么?

                  This is not really working for me though. What have I done wrong?

                  推荐答案

                  错误可能在代码中的其他地方,因为它应该可以正常工作:

                  The bug is probably somewhere else in your code, because it should work fine:

                  >>> 3 not in [2, 3, 4]
                  False
                  >>> 3 not in [4, 5, 6]
                  True
                  

                  或者使用元组:

                  >>> (2, 3) not in [(2, 3), (5, 6), (9, 1)]
                  False
                  >>> (2, 3) not in [(2, 7), (7, 3), "hi"]
                  True
                  

                  这篇关于检查 Python 列表中是否有(不)某些东西的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:将 matplotlib.pylab 的 imshow 与 python ide 一起使用? 下一篇:Pandas 根据布尔条件选择行和列

                  相关文章

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

                      <legend id='3ylQI'><style id='3ylQI'><dir id='3ylQI'><q id='3ylQI'></q></dir></style></legend>
                        <bdo id='3ylQI'></bdo><ul id='3ylQI'></ul>

                      <small id='3ylQI'></small><noframes id='3ylQI'>