Python里面所有instance应该现在__init__里面预定义
Posted panyis的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python里面所有instance应该现在__init__里面预定义相关的知识,希望对你有一定的参考价值。
原因:
Yes, you should assign all attributes of your object in the
__init__
method.The most important reason to do this is tool support. Many Python IDEs can see the assignments in the
__init__
and use those attributes for type-based autocompletion. Sphinx-doc can list those attributes in your reference documentation.
来源:
两个讨论:
例子:
Tesorflow project in Githup
以上是关于Python里面所有instance应该现在__init__里面预定义的主要内容,如果未能解决你的问题,请参考以下文章
python class metaclass instance