摘要: # 一、用函数修饰函数 #!/usr/bin/python3 def decorate_func(func): def call(*args, **kwargs): print('you have called %s()' % (func.__name__)) func(*args, **kwarg 阅读全文
posted @ 2022-07-29 10:52 看一百次夜空里的深蓝 阅读(455) 评论(0) 推荐(0) 编辑
摘要: # any 语法:any(iterable) 作用: 如果iterable(如:列表、字符串、字典等)的任何元素为真,则any()方法返回True。如果没有,any()返回False。 # callable 语法:callable(object) 作用:检查一个对象是否是可调用的。 如果返回 Tru 阅读全文
posted @ 2022-07-29 10:20 看一百次夜空里的深蓝 阅读(326) 评论(0) 推荐(0) 编辑