标签:直接 官方 会计 fun 判断 stat bsp 利用 port
区分函数可以利用两种方法:
第一种直接打印函数名:函数在打印的时候. 很明显的是function. 方法在打印的时候很明显是method.
第二种方式是官方给予的:
from types import FunctionType, MethodType
class car:
def run(self): # 实例方法
print("我是车, 我会跑")
@staticmethod #静态方法
def cul():
print("我会计算")
@classmethod 类方法
def jump(cls):
print("我会jump")
c = car()
print(isinstance(类去调用)FunctionType) #判断是否为函数
print(isinstance(对象去调用) MethodType) #判断是否为方法
标签:直接 官方 会计 fun 判断 stat bsp 利用 port
原文地址:https://www.cnblogs.com/lowen107/p/9936780.html