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.
dir()ビルトインをオブジェクト スーパークラスに適用して生成されたリストと、次のような「ダミー」の本体のないクラスを比較すると、
dir()
class A(): pass
('__dict__', '__module__' and '__weakref__')A クラスには、オブジェクト クラスには存在しない3 つの属性があることがわかります。
('__dict__', '__module__' and '__weakref__')
A クラスはこれらの追加属性をどこから継承しますか?