Python教程

python【try-exception】【装饰器】

本文主要是介绍python【try-exception】【装饰器】,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
  1. 带参数装饰器
def get_decorator(errors=(Exception, ), default_value=''):
    def decorator(func):
        def new_func(*args, **kwargs):
            try:
                return func(*args, **kwargs)
            except errors as e:
                print (repr(e))
                return default_value
        return new_func
    return decorator


try_except = get_decorator(default_value='default')
a = {}


@try_except
def example1(a):
    return a['b']

@try_except
def example2(a):
    return doesnt_exist()

print (example1(a))
print (example2(a))


这篇关于python【try-exception】【装饰器】的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!