• <tfoot id='4NzPk'></tfoot>

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

        <small id='4NzPk'></small><noframes id='4NzPk'>

      1. <legend id='4NzPk'><style id='4NzPk'><dir id='4NzPk'><q id='4NzPk'></q></dir></style></legend>
          <bdo id='4NzPk'></bdo><ul id='4NzPk'></ul>

        如何知道一个对象是否在 Python 中有一个属性

        时间:2023-09-13
      2. <legend id='D0FLZ'><style id='D0FLZ'><dir id='D0FLZ'><q id='D0FLZ'></q></dir></style></legend>

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

                  <bdo id='D0FLZ'></bdo><ul id='D0FLZ'></ul>

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

                  <tfoot id='D0FLZ'></tfoot>

                  本文介绍了如何知道一个对象是否在 Python 中有一个属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  在 Python 中有没有办法确定一个对象是否具有某些属性?例如:

                  Is there a way in Python to determine if an object has some attribute? For example:

                  >>> a = SomeClass()
                  >>> a.someProperty = value
                  >>> a.property
                  Traceback (most recent call last):
                    File "<stdin>", line 1, in <module>
                  AttributeError: SomeClass instance has no attribute 'property'
                  

                  如何判断a在使用前是否有属性property?

                  How can you tell if a has the attribute property before using it?

                  推荐答案

                  试试<代码>hasattr():

                  if hasattr(a, 'property'):
                      a.property
                  

                  请参阅下面的 zweiterlinde 的回答,他提供了关于请求宽恕的好建议!一个非常pythonic的方法!

                  See zweiterlinde's answer below, who offers good advice about asking forgiveness! A very pythonic approach!

                  python 中的一般做法是,如果该属性可能大部分时间都存在,则只需调用它并让异常传播,或者使用 try/except 块捕获它.这可能比 hasattr 更快.如果该属性可能大部分时间都不存在,或者您不确定,使用 hasattr 可能会比反复陷入异常块更快.

                  The general practice in python is that, if the property is likely to be there most of the time, simply call it and either let the exception propagate, or trap it with a try/except block. This will likely be faster than hasattr. If the property is likely to not be there most of the time, or you're not sure, using hasattr will probably be faster than repeatedly falling into an exception block.

                  这篇关于如何知道一个对象是否在 Python 中有一个属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:无法在“对象"实例上设置属性班级 下一篇:遍历python中的对象属性

                  相关文章

                  最新文章

                  <legend id='bq1bT'><style id='bq1bT'><dir id='bq1bT'><q id='bq1bT'></q></dir></style></legend>
                  1. <small id='bq1bT'></small><noframes id='bq1bT'>

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

                        <bdo id='bq1bT'></bdo><ul id='bq1bT'></ul>