摘要: 1 测量函数运行时间 import time def profile(func): def wrapper(*args, **kwargs): import time start = time.time() func(*args, **kwargs) end = time.time() print 阅读全文
posted @ 2019-11-28 11:55 君莫笑hhhhhh 阅读(557) 评论(0) 推荐(0) 编辑