def decorator_function(func):
def wrapper(arg1):
arg1 += 1
func(arg1)
return wrapper
@decorator_function
def hello_world(arg1):
print('>> {}'.format(arg1))
hello_world(1)
Объяснение:
Python 3.7
def decorator_function(func):
def wrapper(arg1):
arg1 += 1
func(arg1)
return wrapper
@decorator_function
def hello_world(arg1):
print('>> {}'.format(arg1))
hello_world(1)
Объяснение:
Python 3.7