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.
我将以下内容作为我尝试使用 Python 自定义的应用程序的输出。
({'featureName': 'Solid extrude-1', 'index': 6, 'instanceName': None, 'isReferenceRep': False, 'pointOn': ((-71.25, 18.75, 20.0),)})
我想'pointOn'从此变量中获取坐标值(键)。
'pointOn'
我不确定这是字典数组还是其他东西。
你得到的实际上是一个对象。Abaqus 只是覆盖了__str__方法的实现,所以输出看起来像别的东西。
__str__
如果您的对象被分配给 name Point1,请尝试通过以下方式访问成员:
Point1
Point1.pointOn Point1.featureName
通常,Abaqus 通常要么返回对象的存储库(集合),要么返回单个对象。你很少能得到除此之外的东西。