从字典数组中检索值:Python

Retrieve value from array of dictionary : Python

我尝试使用 Python.

进行自定义的应用程序的输出如下所示
({'featureName': 'Solid extrude-1', 'index': 6, 'instanceName': None, 'isReferenceRep': False, 'pointOn': ((-71.25, 18.75, 20.0),)})

我想从此变量中获取坐标值('pointOn' 键)。

我不确定这是字典数组还是其他东西。

你得到的其实是一个对象。 Abaqus 只是覆盖了 __str__ 方法的实现,因此输出看起来像其他东西。

如果您的对象已分配给名称 Point1,请尝试通过以下方式访问成员:

Point1.pointOn
Point1.featureName

一般来说,Abaqus 通常 returns 对象的存储库(集合)或单个对象。你很少能得到除此之外的东西。