Python 3.1 快速導覽 - 內建函數 delattr()

內建函數 (function) delattr() ,刪除參數 (parameter) object 的屬性 name

函數描述
delattr(object, name)刪除 object 的屬性 name


舉例示範如下
class Demo:
    def __init__(self, i):
        self.i = i
        self.x = "xxx"
        self.y = "yyy"
        self.z = "zzz"
    
    def __str__(self):
        return str(self.i)
         
    def hello(self):
        print("hello " + self.__str__())

a = Demo(11)
a.hello()
print(dir(a))
delattr(a, "x")
print(dir(a))
delattr(a, "y")
print(dir(a))

# 《程式語言教學誌》的範例程式
# http://pydoing.blogspot.com/
# 檔名:delattr.py
# 功能:示範 Python 程式 
# 作者:張凱慶
# 時間:西元 2010 年 12 月


執行結果如下



另一個內建函數 dir() 會印出參數物件的所有屬性及方法名稱,包括連續兩個底線開頭結尾的預設屬性及方法。此例中,我們可以看到當屬性 x 與 y 依次被刪除後,就沒有出現在 dir() 回傳的串列中。


中英文術語對照
函數function
參數parameter


內建函數




沒有留言: