Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
モジュールまたはそのモジュール内の特定のオブジェクトがインポートされた場合でも、そのモジュールfrom foo import bar全体が最初に評価されることを知っています。__init__しかし、そのモジュール内でまたはを定義すると、クラスやパッケージ__new__内でのように特別な意味や扱いがあるのではないかと思っていました。そして、なぜそうですか?
from foo import bar
__init__
__new__
Python でオブジェクトを変更できないようにすることはできます__init__()か?__new__()
__init__()
__new__()