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.
これは非常に悪いことですが、次のようなオブジェクトを別のモジュールのグローバルに追加することは可能ですか。
#module dog.py import cat cat.globals.addVar('name','mittens')
と
#module cat.py print name #mittens
setattr(cat, 'name', 'mittens')
また
cat.name = 'mittens'