最新回答 / 东方不能败
import timedef performance(unit): def per_decorator(f): def wrapper(*args,**kw): tb = time.time() print tb r = f(*args,**kw) ta = time.time() print ta print unit t = (t...
2018-03-29
最新回答 / qq_龙_18
应该是你使用错误了!那个count放在类里面就是类的属性了!不是全局变量!count=0class Person(object): def __init__(self,name): global count count+=1 self.name=namep1 = Person('Bob')print countp2 = Person('Alice')print countp3 = Person('Tim')print count你这样试一试
2018-03-27
最新回答 / 慕斯6415185
f.__name__(双下划线)就是函数f的函数名,你可以在ide里面试一下,f=abs,f.__name__,会返回abs。你的代码fn函数没有返回值,要return fn,即返回函数名
2018-03-26