Question 27
Consider the following python code snippet and choose the correct option.
def modify(func): def wrapper(x): list = func(x, []) return list return wrapper
@modifydef expandList(x, list = []): list.append(x) return list
print(expandList(5))print(expandList(6))