如何在 Python 中找到物件的屬性或方法?
若要查詢物件的屬性,請使用 Python 中的 getarr() 方法。若要檢查屬性是否存在,請使用 hasattr() 方法。使用 Python 中的 setattr() 方法設定屬性。
訪問物件的屬性
示例
若要訪問物件的屬性,我們將使用 Python 中的 getattr() 方法 -
class student: st_name ='Amit' st_age ='18' st_marks = '99' def demo(self): print(self.st_name) print(self.st_age) print(self.st_marks) # Create objects st1 = student() st2 = student() # The getattr() is used here print ("Name = ",getattr(st1,'st_name')) print ("Age = ",getattr(st2,'st_age'))
輸出
Name = Amit Age = 18
訪問和設定類屬性
示例
在此示例中,我們將使用 setattr() 方法來設定屬性。
class student: st_name ='Tim' st_age ='18' def demo(self): print("Hello from demo() function") # The getattr() is used here print(getattr(student,'st_name')) # Returns true if object has attribute print(hasattr(student,'st_age')) # Set additional attribute st_marks setattr(student,'st_marks','95') # Get Attribute print(getattr(student,'st_marks')) # Checking for an attribute print(hasattr(student,'demo'))
輸出
Tim True 95 True
訪問方法
示例
在此示例中,我們將學習如何訪問方法 -
class student: st_name ='Tim' st_age ='18' def demo(self): print("Hello from demo() function") # The getattr() is used here print(getattr(student,'st_name')) # Returns true if object has attribute print(hasattr(student,'st_age')) # Set additional attribute st_marks setattr(student,'st_marks','95') # Get Attribute print(getattr(student,'st_marks')) # Checking for an attribute print(hasattr(student,'demo')) # Access methods using an object st1 = student() st1.demo()
輸出
Tim True 95 True Hello from demo() function
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP