已知列表lis被赋值如下:
lis = [5, 8, 1, 5, 2, 6]
下面列表操作函数的返回结果,错误的是( )。
max(lis)的返回结果是:8
sum(lis)的返回结果是:27
lis.count(5)的返回结果是:1
min(lis)的返回结果是:1