“__Delattr__ Python” Kod odpowiedzi

__Delattr__ Python

class test:
    attr = 1

    def __delattr__(self, item):
        object.__delattr__(self, item)

ins = test()

print(ins.attr)

del ins.attr

print(ins.attr)
Depressed Dingo

__Delattr__ Python


  2           0 LOAD_FAST                0 (foo)
              3 DELETE_ATTR              0 (bar)

Powerful Platypus

Odpowiedzi podobne do “__Delattr__ Python”

Pytania podobne do “__Delattr__ Python”

Więcej pokrewnych odpowiedzi na “__Delattr__ Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu