摘要: 1 def log(text=None): 2 3 if isinstance(text, str): 4 def decorator(func): 5 @functools.wraps(func) 6 def wrapper(*args, **kw): 7 print('%s %s():' % ( 阅读全文
posted @ 2019-12-16 18:05 小白一只726 阅读(528) 评论(0) 推荐(1) 编辑