Appendix-03-FunctionType-MethodType
Appendix-03-FunctionType-MethodType
class _C:
def _m(self): pass
print(f"Method type: {type(_C()._m)}")<class 'method'>def _f():
pass
print(f"Function type: {type(_f)}")Function type: <class 'function'>