我有一個對象列表,每個對象都有一個特定屬性。該屬性不是唯一的,我想最終列出作爲整個列表子集的對象,以便所有特定屬性都是唯一集合。具有唯一屬性的對象列表
舉例來說,如果我有四個目標:
object1.thing = 1
object2.thing = 2
object3.thing = 3
object4.thing = 2
我想直到結束或者
[object1, object2, object3]
或
[object1, object3, object4]
,在風的確切對象最後的列表並不重要,只是其特定屬性的列表是唯一的。
編輯:爲了澄清,基本上我想要的是一套是關閉該特定屬性。
的可能的複製[如何使用關鍵字來獲得獨特的名單:Python的](https://stackoverflow.com/questions/10024646/how-to-get-unique-list-using-a-key-word-python) – Georgy