Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么理由不能使用这种语法吗?
def myclass.method(self): pass
相反,python目前使用赋值,例如:
def f(self): pass myclass.method = f