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.
我需要有关 Pyomo 的类、方法和属性的文档。我在哪里可以找到那个。几天来,我一直在寻找这个文档。
西尔瓦娜诺布雷
您可以使用 dir([object])¶ 不带参数,返回当前本地范围内的名称列表。使用参数,尝试返回该对象的有效属性列表。
m = AbstractModel() print (dir(m))
将打印 AbstractModel 对象的所有属性