14
Làm thế nào để biết một đối tượng có thuộc tính trong Python
Có cách nào trong Python để xác định xem một đối tượng có thuộc tính nào không? Ví dụ: >>> a = SomeClass() >>> a.someProperty = value >>> a.property Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: SomeClass instance has no attribute 'property' Làm thế nào …
1635
python
attributes