执行下面Python代码后,输出的结果是?( )
def apply(func, x): return func(x) def square(n): return n * n result = apply(square, 4) print(result)
16
8
4
报错