执⾏下⾯Python代码后 ,调⽤函数func可以得到一个列表类型的数据。
def func():
return [1, 2],
result = func()
print(type(result))
正确
错误