第26268题
判断:调用给定Python代码中的func()得到的返回值是否为列表类型
def func():
    return [1, 2],
result = func()
print(type(result))
A

正确

B

错误